isAdmin() public méthode

Checks if the user is admin user (scalr, financial). It means user doesn't have current environment
public isAdmin ( ) : boolean
Résultat boolean
Exemple #1
0
 /**
  * Restricts access to controller's actions
  *
  * @return boolean Returns true if user has access.
  */
 public function hasAccess()
 {
     if ($this->user) {
         // check admin, non-admin
         if (!$this->user->isAdmin()) {
             // check controller in permissions
             return true;
         } else {
             return false;
         }
     } else {
         return false;
     }
 }