Login     Sign up
admin links question
Dann (@zipp2000)
Join date: Sep 17th 2010
Community posts: 28
View Profile
Send Message

whats needed to hide links & admin only to see them i gave below code a go but still shows up for non admin

[code]

$items = array();
$items['newlist'] = array(
    'name'=>'uSr',
    'type'=>'admin'

[/code]

I'm working on a new way to display members :)
i think we need a guide section lol

166 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

an example in dashboard.php

[code]
if (allow_access(3)) {
ass(array(
'title'=>'Administration',
'content'=>'Go to <strong>'.url('admin',t('Administration Panel') ).'</strong>'));
}
[/code]

only people with access level 3 (=admin) can see this

166 months ago