You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zabbix/ui/app/views/popup.scheduledreport.subsc...

151 lines
4.2 KiB

<?php
/*
** 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.
**/
/**
* @var CView $this
*/
$form = (new CForm())
->setId('subscription-form')
->setName('subscription-form')
->addVar('action', $data['action'])
->addVar('recipient_type', $data['recipient_type'])
->addVar('recipient_name', $data['recipient_name'])
->addVar('recipient_inaccessible', $data['recipient_inaccessible'])
->addVar('update', 1);
// Enable form submitting on Enter.
$form->addItem((new CSubmitButton())->addClass(ZBX_STYLE_FORM_SUBMIT_HIDDEN));
if ($data['old_recipientid']) {
$form->addVar('old_recipientid', $data['old_recipientid']);
}
if ($data['edit']) {
$form->addVar('edit', $data['edit']);
}
if ($data['recipient_type'] == ZBX_REPORT_RECIPIENT_TYPE_USER) {
foreach ($data['userids'] as $index => $userid) {
$form->addVar('userids['.$index.']', $userid);
}
$recipient_multiselect = new CMultiSelect([
'name' => 'recipientid',
'object_name' => 'users',
'multiple' => false,
'data' => $data['recipient_ms'],
'popup' => [
'parameters' => [
'srctbl' => 'users',
'srcfld1' => 'userid',
'srcfld2' => 'fullname',
'dstfrm' => $form->getName(),
'dstfld1' => 'recipientid'
]
],
'add_post_js' => false
]);
}
else {
foreach ($data['usrgrpids'] as $index => $usrgrpid) {
$form->addVar('usrgrpids['.$index.']', $usrgrpid);
}
$recipient_multiselect = new CMultiSelect([
'name' => 'recipientid',
'object_name' => 'usersGroups',
'multiple' => false,
'data' => $data['recipient_ms'],
'popup' => [
'parameters' => [
'srctbl' => 'usrgrp',
'srcfld1' => 'usrgrpid',
'srcfld2' => 'name',
'dstfrm' => $form->getName(),
'dstfld1' => 'recipientid'
]
],
'add_post_js' => false
]);
}
$form_grid = (new CFormGrid())
->addItem([
(new CLabel(_('Recipient'), 'recipientid'))->setAsteriskMark(),
new CFormField($recipient_multiselect->setWidth(ZBX_TEXTAREA_MEDIUM_WIDTH))
])
->addItem([
new CLabel([
_('Generate report by'),
($data['edit'] && $data['creatorid'] != 0 && $data['creatorid'] != CWebUser::$data['userid'])
? makeWarningIcon(_s('Report is currently generated by "%1$s".', $data['creator_name']))
: null
], 'creator_type'),
new CFormField(
(new CRadioButtonList('creator_type', (int) $data['creator_type']))
->addValue(_('Current user'), ZBX_REPORT_CREATOR_TYPE_USER)
->addValue(_('Recipient'), ZBX_REPORT_CREATOR_TYPE_RECIPIENT)
->setModern(true)
)
]);
if ($data['recipient_type'] == ZBX_REPORT_RECIPIENT_TYPE_USER) {
$form_grid->addItem([
new CLabel(_('Status'), 'exclude'),
new CFormField(
(new CRadioButtonList('exclude', (int) $data['exclude']))
->addValue(_('Include'), ZBX_REPORT_EXCLUDE_USER_FALSE)
->addValue(_('Exclude'), ZBX_REPORT_EXCLUDE_USER_TRUE)
->setModern(true)
)
]);
}
$form->addItem($form_grid);
$output = [
'header' => $data['title'],
'body' => $form->toString(),
'script_inline' => $this->readJsFile('popup.scheduledreport.subscription.js.php'),
'buttons' => [
[
'title' => $data['edit'] ? _('Update') : _('Add'),
'keepOpen' => true,
'isSubmit' => true,
'action' => 'return submitScheduledReportSubscription(overlay);'
]
]
];
$output['script_inline'] .= $recipient_multiselect->getPostJS();
if (($messages = getMessages()) !== null) {
$output['errors'] = $messages->toString();
}
if ($data['user']['debug_mode'] == GROUP_DEBUG_MODE_ENABLED) {
CProfiler::getInstance()->stop();
$output['debug'] = CProfiler::getInstance()->make()->toString();
}
echo json_encode($output);