__wakeup() 공개 메소드

Unserialization handler; handles $this->_element being an instance of DOMElement or Horde_Xml_Element, or parses it as an XML string.
public __wakeup ( )
예제 #1
0
파일: List.php 프로젝트: jubinpatel/horde
 /**
  * Ensure that $_listItems is populated by calling the concrete implementation's
  * _buildItemsCache() method.
  */
 public function __wakeup()
 {
     parent::__wakeup();
     $this->_listItems = $this->_buildListItemCache();
 }