logo       

Re: Navigation Menu Only for Admin?: msg#00060

php.drupal.support

Subject: Re: Navigation Menu Only for Admin?

Make a custom PHP block with the following code:

global $user;
if ($user->uid == 1) {
return '<div class="menu">'. theme('menu_tree') .'</div>';
}

This will only show up for the first user. If you have multiple admins with an administrator role instead, you'll need some more complicated code which queries the users_roles table.

Steven

--
[ Drupal support list | http://list.drupal.org/ ]



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | FAQ | advertise