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
파일: Comment.php 프로젝트: nidzix/Newscoop
 /**
  * Check if the comment is the same as this one
  *
  * @param Comment $p_comment
  * @return bool
  * @deprecated legacy from frontend controllers
  */
 public function SameAs($p_comment)
 {
     return $p_comment->getId() == $this->getId();
 }