Allow me to point out two facts:
- static doesn't work through eval(). Believe me, I tried. I worked with this for 3 hours straight yesterday XD
- You might not actually have to run a new query:
PHP Code:
global $admin;
if (isset($getperms['customadminperms']))
{
$admin = $getperms['customadminperms'];
}
if (!isset($admin))
{
// must get our perms
$getperms = $vbulletin->db->query_first("
SELECT `customadminperms`
FROM " . TABLE_PREFIX . "administrator
WHERE userid = " . $vbulletin->userinfo['userid']
);
$admin = $getperms['customadminperms'];
}
foreach ($do AS $field)
{
if ($admin & $vbulletin->bf_misc_customadminperms["$field"])
{
$return_value = true;
}
}
I tested this code on localhost yesterday, and it works like a charm, no extra queries involved unless for some reason it won't work like it should without 
EDIT: This randomly doesn't seem to work for OLD administrators, and only in the ACP menu.
In my custom menu it works fine, it just doesn't work in the cpnav_ menu.
EDIT #2: I fixed it now. Made it so it doesn't query unless for some reason it didn't fetch the permissions properly. Also I replaced the * in the query for a slight load decrease =P