how to change Menu links

aveiro

Joined: 2012-05-29
Posts: 3
Posted: Tue, 2012-06-05 10:18

I would like the menu link (using menu link module) to only show when logged in as admin, hidden when signed in as registed, menu_links_event.php is where Im looking at the moment
Thanks

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2012-06-05 16:18
    $user = identity::active_user();
    if ($user->admin) {
the original code goes here.
    }

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
aveiro

Joined: 2012-05-29
Posts: 3
Posted: Wed, 2012-06-06 11:10

Thanks Dave did the trick