Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Is there a way or module available that will allow me to setup certain password conventions? For example, I need to force my users to setup passwords that are:
1. Between 8 and 16 characters.
2. Must include at least one capitalized letter
3. Must include at least one numerical characters.
Also I need to be able to force passwords to expire after, say, 30 days.
I have a kind of user named rfranco_user, I have an user login as Fernandito and I want a page that put the name of the user, if I put
function mimodule_page(){
print theme('page',$user);
}
nothing appears in the page, and If I put
function mimodule_page(){
print theme('page',$user->uid);
}
nothing is printed too and I want to print "Fernandito"
Does anyone have any thoughts on the best way to output a site navigation? And I don't mean the navigation block that appears by default.
My site will have 5 navigation links which I would like to have appear on all of my public pages, but ideally not in the admin area.
I've thought about the primary/secondary links that are a feature of each theme, but you can't turn those off for certain areas (like admin). It seems like blocks won't work either because those are for the left or right sidebar, and my site has no tables and I also want the nav at the top.