Exemplo n.º 1
0
 /**
  * Delete occurrence as well as associated meta data.
  * @return boolean True on success, false on failure.
  */
 public function Delete()
 {
     foreach ($this->getAdapter()->GetMeta() as $meta) {
         $meta->Delete();
     }
     return parent::Delete();
 }
Exemplo n.º 2
0
 /**
  * Clear the cache.
  */
 protected static function CacheClear()
 {
     self::$_cache = array();
 }