Well ... as of vBulletin 3.5.4 $admin is there by default
The following code might work cross-version?
PHP Code:
if (!isset($admin))
{
// this is not vBulletin 3.5.4+
global $admin;
}
if (!isset($admin))
{
// must get our perms
$getperms = $vbulletin->db->query_first("
SELECT *
FROM " . TABLE_PREFIX . "administrator
WHERE userid = " . $vbulletin->userinfo['userid']
);
$admin = $getperms;
}
foreach ($do AS $field)
{
if ($admin['customadminperms'] & $vbulletin->bf_misc_customadminperms["$field"])
{
$return_value = true;
}
}