Esempio n. 1
0
File: Page.php Progetto: reliv/rcm
 /**
  * Clone the page
  */
 public function __clone()
 {
     if (!$this->pageId) {
         return;
     }
     $this->pageId = null;
     $this->name = null;
     $this->parent = null;
     parent::__clone();
 }
Esempio n. 2
0
 /**
  * Clone the container
  *
  * @return void
  */
 public function __clone()
 {
     if (!$this->containerId) {
         return;
     }
     $this->containerId = null;
     parent::__clone();
 }