/** * 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(); }
/** * Clear the cache. */ protected static function CacheClear() { self::$_cache = array(); }