Esempio n. 1
0
 /**
  * Sorts the data returned from the cache and places it into appropriate places
  *
  * @param	string	The name of the data item to be processed
  * @param	mixed	The data associated with the title
  *
  * @return	void
  */
 function register($title, $data, $unserialize_detect = 2)
 {
     if ($this->store_result === true) {
         $this->build($title, $data);
     }
     parent::register($title, $data, $unserialize_detect);
 }
Esempio n. 2
0
 /**
  * Sorts the data returned from the cache and places it into appropriate places
  *
  * @param	string	The name of the data item to be processed
  * @param	mixed	The data associated with the title
  *
  * @return	void
  */
 protected function register($title, $data, $unserialize_detect = 2)
 {
     if ($this->store_result === true) {
         $this->storeEAccelerator($title, $data);
     }
     parent::register($title, $data, $unserialize_detect);
 }