__wakeup() публичный Метод

public __wakeup ( )
Пример #1
0
 /**
  *
  */
 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);
     }
 }