예제 #1
0
파일: user.php 프로젝트: vanie3/appland
 public function getAuthorisedGroups()
 {
     if ($this->_authGroups === null) {
         $this->_authGroups = array();
     }
     if (empty($this->_authGroups)) {
         $this->_authGroups = MAccess::getGroupsByUser($this->id);
     }
     return $this->_authGroups;
 }