getId() 공개 메소드

Get id
public getId ( ) : integer
리턴 integer
 public function getId()
 {
     if ($this->__isInitialized__ === false) {
         return (int) $this->_identifier["id"];
     }
     $this->__load();
     return parent::getId();
 }
예제 #2
0
파일: Group.php 프로젝트: nidzix/Newscoop
 /**
  * Get role id
  *
  * @return int
  */
 public function getRoleId()
 {
     return $this->role ? $this->role->getId() : 0;
 }