__wakeup() public method

public __wakeup ( )
示例#1
0
文件: Concrete.php 项目: sfie/pimcore
 /**
  *
  */
 public function __wakeup()
 {
     parent::__wakeup();
     // renew localized fields
     // do not use the getter ($this->getLocalizedfields()) as it somehow slows down the process around a sec
     // no clue why this happens
     if (property_exists($this, "localizedfields") && $this->localizedfields instanceof Localizedfield) {
         $this->localizedfields->setObject($this);
     }
 }