コード例 #1
0
ファイル: BaseMovieI18n.php プロジェクト: ajith24/ajithworld
 public function getMovie($con = null)
 {
     if ($this->aMovie === null && $this->id !== null) {
         $this->aMovie = MoviePeer::retrieveByPK($this->id, $con);
     }
     return $this->aMovie;
 }