示例#1
0
 /**
  * (non-PHPdoc)
  * @see Zend_Db_Table_Abstract::delete()
  */
 public function delete($where)
 {
     $return = parent::delete($where);
     App_Cache::remove($this->getTableName());
     return $return;
 }
示例#2
0
 /**
  * 
  */
 protected function _reloadSmsConfig()
 {
     App_Cache::remove($this->_idCache);
     $config = $this->getCurrentConfig();
     App_Cache::save($config, $this->_idCache);
 }