コード例 #1
0
ファイル: Stat.php プロジェクト: VictorSproot/AtomXCMS-2
 /**
  * @return object
  */
 public function getAuthor()
 {
     if (!$this->checkProperty('author')) {
         $Model = new StatModel('stat');
         $this->author = $Model->getAuthorByEntity($this);
         // TODO (function is not exists)
     }
     return $this->author;
 }