isAccountOwner() 공개 메소드

Checks if the user is account owher
public isAccountOwner ( ) : boolean
리턴 boolean Returns true if user is account owner.
예제 #1
0
파일: User.php 프로젝트: mheydt/scalr
 /**
  * Checks whether the user is allowed to edit specified user
  *
  * @param   User     $user The user to edit
  * @return  boolean  Returns true if the user is allowed to edit specified user
  */
 public function canEditUser(User $user)
 {
     return !$this->isTeamUser() && $user->accountId == $this->accountId && ($this->id == $user->id || $this->isAccountOwner() || $this->isAccountSuperAdmin() && !$user->isAccountOwner() || $this->isAccountAdmin() && !$user->isAccountOwner() && !$user->isAccountSuperAdmin());
 }