Super Admin edit page points to billing now

* Also prevent super admin from being deleted
This commit is contained in:
Albert Santoni 2014-06-20 13:36:06 -04:00
parent 29e9182fcd
commit faa12c8065
6 changed files with 32 additions and 9 deletions

View file

@ -49,7 +49,12 @@ class Application_Model_User
{
return $this->isUserType(UTYPE_ADMIN);
}
public function isSuperAdmin()
{
return $this->isUserType(UTYPE_SUPERADMIN);
}
public function canSchedule($p_showId)
{
$type = $this->getType();