Ejemplo n.º 1
0
 private function _vipDel()
 {
     $this->_modelGameOperator = $this->_getGlobalData('Model_GameOperator', 'object');
     if ($this->_modelGameOperator->delById($_GET['Id'])) {
         $this->_utilMsg->showMsg(Tools::getLang('DEL_SUCESS', 'Common'), 1);
     } else {
         $this->_utilMsg->showMsg(Tools::getLang('DEL_ERROR', 'Common'), -2);
     }
 }
Ejemplo n.º 2
0
 private function _vipDel()
 {
     $this->_modelGameOperator = $this->_getGlobalData('Model_GameOperator', 'object');
     if ($this->_modelGameOperator->delById($_GET['Id'])) {
         $this->_utilMsg->showMsg('删除成功', 1);
     } else {
         $this->_utilMsg->showMsg('删除失败', -2);
     }
 }