PDA

View Full Version : Admin CP link when admin MOD CP link when mod?


Airs
07-20-2003, 10:30 PM
Is there such a hack that when you log-on u see the admin link *if ur an admin* and same thing if your a mod but you see nothing if ur just a normal member. I had it on invision board so figured id ask if there was one thnx!.

EvilLS1
07-21-2003, 01:24 AM
I just added this to phpinclude (under styles in the cp) and put $adminpanel in the footer where I wanted the link to show.


if ($bbuserinfo[usergroupid]==6) {
//admins
$adminpanel = "<a href=\"admin/index.php\">Administration Panel</a><br>";
} else if (($bbuserinfo[usergroupid] ==5) || ($bbuserinfo[usergroupid] ==7)) {
//mods and super mods
$adminpanel = "<a href=\"mod/index.php\">Moderation Panel</a><br>";
} else {
//everyone else
$adminpanel = "";
}

Airs
07-21-2003, 02:07 AM
thnx! worked great ^^.

Xenon
07-21-2003, 09:54 AM
such things are also possible with template conditional hacks