Example #1
0
 public function delete_muti($arrParam = null)
 {
     $tblGroup = new Manager_Model_user();
     if (count($arrParam['cid']) > 0) {
         $ids = implode(',', $arrParam['cid']);
         $where = 'id IN (' . $ids . ')';
         $tblGroup->delete($where);
     }
 }
 public function mutiAction()
 {
     $tblsection = new Manager_Model_user();
     $tblsection->delete_muti($this->_arrParam);
     $this->_redirect('manager/user');
     $this->_helper->viewRenderer->setNoRender();
 }