Added User::RequireAccessLevel function

feature/node-rewrite
Sven Slootweg 12 years ago
parent 2ba03fbafe
commit 56e880eafc

@ -74,4 +74,16 @@ class User extends CPHPDatabaseRecordClass
return false;
}
}
public function RequireAccessLevel($level)
{
if($this->sAccessLevel < $level)
{
throw new InsufficientAccessLevelException("You do not have the required access level to perform this action.");
}
else
{
return true;
}
}
}

Loading…
Cancel
Save