예제 #1
0
 /**
  * Delete object and remove it from the Cache
  *
  * @see ORM_Model::Destroy()
  * @param string $id
  *      Model primary key value
  */
 public static function Destroy($id)
 {
     $this->_cache()->delete(static::CacheId($id));
     parent::Destroy($id);
 }