'fatal|required|db icon_map.iconmapid', 'iconmap' => 'required|array' ]; $ret = $this->validateInput($fields); if (!$ret) { $this->setResponse(new CControllerResponseFatal()); } return $ret; } protected function checkPermissions() { if ($this->checkAccess(CRoleHelper::UI_ADMINISTRATION_GENERAL)) { return (bool) API::IconMap()->get([ 'output' => [], 'iconmapids' => $this->getInput('iconmapid') ]); } return false; } protected function doAction() { $iconmap = $this->getInput('iconmap') + ['mappings' => []]; $iconmap['iconmapid'] = $this->getInput('iconmapid'); $result = (bool) API::IconMap()->update($iconmap); if ($result) { $response = new CControllerResponseRedirect( (new CUrl('zabbix.php'))->setArgument('action', 'iconmap.list') ); CMessageHelper::setSuccessTitle(_('Icon map updated')); } else { $response = new CControllerResponseRedirect( (new CUrl('zabbix.php')) ->setArgument('action', 'iconmap.edit') ->setArgument('iconmapid', $iconmap['iconmapid']) ); $form_data = $this->getInputAll(); if (!array_key_exists('mappings', $form_data['iconmap'])) { $form_data['iconmap']['mappings'] = []; } $response->setFormData($form_data); CMessageHelper::setErrorTitle(_('Cannot update icon map')); } $this->setResponse($response); } }