/**
  * Clone magic, recurse clone for redirect and path
  */
 public function __clone()
 {
     parent::__clone();
     if (!empty($this->id)) {
         $this->resetCreationTime();
         $this->path = new PageLocalizationPath($this->getId(), $this->getLocaleId());
     }
 }