示例#1
0
 /**
  * Handle a bulk event
  *
  * @return \Cake\Network\Response
  * @throws \Crud\Error\Exception\ActionNotConfiguredException
  */
 protected function _handle()
 {
     $field = $this->config('field');
     if (empty($field)) {
         throw new ActionNotConfiguredException('No field value specified');
     }
     return parent::_handle();
 }