コード例 #1
0
ファイル: User.php プロジェクト: alvsgithub/Newscoop
 /**
  * Get role id
  *
  * @return int
  */
 public function getRoleId()
 {
     return $this->role ? $this->role->getId() : 0;
 }
コード例 #2
0
ファイル: Group.php プロジェクト: nidzix/Newscoop
 /**
  * Get role rules
  *
  * @return array
  */
 public function getRoleRules()
 {
     return $this->role ? $this->role->getRules() : array();
 }
コード例 #3
0
 public function getRules()
 {
     $this->__load();
     return parent::getRules();
 }