예제 #1
0
파일: Page.php 프로젝트: Jazzee/Jazzee
 /**
  * Create a temporary application page
  * @return \Jazzee\Entity\ApplicationPage
  */
 public function getFakeApplicationPage()
 {
     if ($this->_fakeApplicationPage == null) {
         $this->_fakeApplicationPage = new ApplicationPage();
         $this->_fakeApplicationPage->setPage($this);
     }
     return $this->_fakeApplicationPage;
 }