Source
'media_type_test_timeout' => $this->getInput('media_type_test_timeout', CSettingsHelper::get(
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
class CControllerTimeoutsEdit extends CController {
protected function init(): void {
$this->disableCsrfValidation();
}
protected function checkInput(): bool {
$fields = [
'timeout_zabbix_agent' => 'db config.timeout_zabbix_agent',
'timeout_simple_check' => 'db config.timeout_simple_check',
'timeout_snmp_agent' => 'db config.timeout_snmp_agent',
'timeout_external_check' => 'db config.timeout_external_check',
'timeout_db_monitor' => 'db config.timeout_db_monitor',
'timeout_http_agent' => 'db config.timeout_http_agent',
'timeout_ssh_agent' => 'db config.timeout_ssh_agent',
'timeout_telnet_agent' => 'db config.timeout_telnet_agent',
'timeout_script' => 'db config.timeout_script',
'socket_timeout' => 'db config.socket_timeout',
'connect_timeout' => 'db config.connect_timeout',
'media_type_test_timeout' => 'db config.media_type_test_timeout',
'script_timeout' => 'db config.script_timeout',
'item_test_timeout' => 'db config.item_test_timeout',
'report_test_timeout' => 'db config.report_test_timeout'
];
$ret = $this->validateInput($fields);
if (!$ret) {
$this->setResponse(new CControllerResponseFatal());
}
return $ret;
}
protected function checkPermissions(): bool {
return $this->checkAccess(CRoleHelper::UI_ADMINISTRATION_GENERAL);
}
protected function doAction(): void {
$data = [
'timeout_zabbix_agent' => $this->getInput('timeout_zabbix_agent', CSettingsHelper::get(
CSettingsHelper::TIMEOUT_ZABBIX_AGENT