getId() public method

Get id
public getId ( ) : integer
return integer
コード例 #1
0
 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;
 }