Esempio n. 1
0
 /**
  * 基础配置删除
  */
 public function delAction()
 {
     $iAutoID = intval($this->getParam('id'));
     $iRet = Model_Domain::delData($iAutoID);
     if ($iRet == 1) {
         return $this->showMsg('基础配置删除成功!', true);
     } else {
         return $this->showMsg('基础配置删除失败!', false);
     }
 }