I couldn't get it to work so I made my own function in the hook "global_start".
I kept everything else the same but removed "can_administer".
I had to use this query to add the field to the "administrator" table.
PHP Code:
$db->query_write("ALTER TABLE `" . TABLE_PREFIX . "administrator` ADD hostingadminperms INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL ;");
I put this in
global_start
PHP Code:
function can_admin_hosting()
{
global $vbulletin, $db;
$getuserperms = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "administrator WHERE userid='".$vbulletin->userinfo['userid']."' ");
$perms = $db->fetch_array($getuserperms);
return $perms['hostingadminperms'];
}
In your admin backend file I just used
PHP Code:
can_admin_hosting();