Пример #1
0
 public function delete_muti($arrParam = null)
 {
     $tblGroup = new Manager_Model_group();
     if (count($arrParam['cid']) > 0) {
         $ids = implode(',', $arrParam['cid']);
         $where = 'id IN (' . $ids . ')';
         $tblGroup->delete($where);
     }
 }