__wakeup() public method

Unserialization handler; handles $this->_element being an instance of DOMElement or Horde_Xml_Element, or parses it as an XML string.
public __wakeup ( )
Ejemplo n.º 1
0
 /**
  * Ensure that $_listItems is populated by calling the concrete implementation's
  * _buildItemsCache() method.
  */
 public function __wakeup()
 {
     parent::__wakeup();
     $this->_listItems = $this->_buildListItemCache();
 }