Source
$filter_hostids = $this->getInput('filter_hostids', CProfile::getArray($prefix.'trigger.list.filter_hostids', []));
<?php declare(strict_types = 0);
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
class CControllerTriggerList extends CController {
protected function init(): void {
$this->disableCsrfValidation();
}
protected function checkInput(): bool {
$fields = [
'context' => 'required|in '.implode(',', ['host', 'template']),
'filter_evaltype' => 'in '.implode(',', [TAG_EVAL_TYPE_AND_OR, TAG_EVAL_TYPE_OR]),
'filter_dependent' => 'in '.implode(',', [-1, 0, 1]),
'filter_discovered' => 'in '.implode(',', [-1, 0, 1]),
'filter_groupids' => 'array_id',
'filter_hostids' => 'array_id',
'filter_inherited' => 'in '.implode(',', [-1, 0, 1]),
'filter_name' => 'string',
'filter_priority' => 'array',
'filter_set' => 'in 1',
'filter_state' => 'in '.implode(',', [-1, TRIGGER_STATE_NORMAL, TRIGGER_STATE_UNKNOWN]),
'filter_status' => 'in '.implode(',', [-1, TRIGGER_STATUS_ENABLED, TRIGGER_STATUS_DISABLED]),
'filter_rst' => 'in 1',
'filter_tags' => 'array',
'filter_value' => 'in '.implode(',', [-1, TRIGGER_VALUE_FALSE, TRIGGER_VALUE_TRUE]),
'sort' => 'in '.implode(',', ['description', 'priority', 'status']),
'sortorder' => 'in '.implode(',', [ZBX_SORT_UP, ZBX_SORT_DOWN]),
'page' => 'ge 1',
'uncheck' => 'in 1'
];
$ret = $this->validateInput($fields);
if (!$ret) {
$this->setResponse(new CControllerResponseFatal());
}
return $ret;
}
protected function checkPermissions(): bool {
return $this->getInput('context') === 'host'
? $this->checkAccess(CRoleHelper::UI_CONFIGURATION_HOSTS)
: $this->checkAccess(CRoleHelper::UI_CONFIGURATION_TEMPLATES);
}
protected function doAction() {
$data = [
'context' => $this->getInput('context'),