示例#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;
 }