예제 #1
0
파일: Page.php 프로젝트: reliv/rcm
 /**
  * Clone the page
  */
 public function __clone()
 {
     if (!$this->pageId) {
         return;
     }
     $this->pageId = null;
     $this->name = null;
     $this->parent = null;
     parent::__clone();
 }
예제 #2
0
파일: Container.php 프로젝트: reliv/rcm
 /**
  * Clone the container
  *
  * @return void
  */
 public function __clone()
 {
     if (!$this->containerId) {
         return;
     }
     $this->containerId = null;
     parent::__clone();
 }