Exemplo n.º 1
0
 function admin_mass()
 {
     $model = $this->modelNames[0];
     $ids = $this->__massGetIds($this->data[$model]);
     switch ($this->__massGetAction($this->params['form'])) {
         case 'delete':
             return parent::__massActionDelete($this->__canDelete($ids));
             break;
         default:
             parent::admin_mass();
             break;
     }
     // switch
 }