<?php
class CControllerWidgetTrigOverView extends CControllerWidget {
public function __construct() {
parent::__construct();
$this->setType(WIDGET_TRIG_OVER);
$this->setValidationRules([
'name' => 'string',
'fields' => 'json',
'initial_load' => 'in 0,1'
]);
}
protected function doAction() {
$fields = $this->getForm()->getFieldsData();
$data = [
'name' => $this->getInput('name', $this->getDefaultName()),
'initial_load' => (bool) $this->getInput('initial_load', 0),
'style' => $fields['style'],
'user' => [
'debug_mode' => $this->getDebugMode()
]
];
$trigger_options = [
'skipDependent' => ($fields['show'] == TRIGGERS_OPTION_ALL) ? null : true,
'only_true' => ($fields['show'] == TRIGGERS_OPTION_RECENT_PROBLEM) ? true : null,
'filter' => [
'value' => ($fields['show'] == TRIGGERS_OPTION_IN_PROBLEM) ? TRIGGER_VALUE_TRUE : null
]
];
$problem_options = [
'show_suppressed' => $fields['show_suppressed'],
'show_recent' => ($fields['show'] == TRIGGERS_OPTION_RECENT_PROBLEM) ? true : null,
'tags' => (array_key_exists('tags', $fields) && $fields['tags']) ? $fields['tags'] : null,
'evaltype' => array_key_exists('evaltype', $fields) ? $fields['evaltype'] : TAG_EVAL_TYPE_AND_OR
];
$host_options = [
'hostids' => $fields['hostids'] ? $fields['hostids'] : null
];
[$data['db_hosts'], $data['db_triggers'], $data['dependencies'], $data['triggers_by_name'],
$data['hosts_by_name'], $data['exceeded_limit']
] = getTriggersOverviewData(getSubGroups($fields['groupids']), $host_options, $trigger_options, $problem_options
);
$this->setResponse(new CControllerResponseData($data));
}
}