218 lines
5.9 KiB
PHP
218 lines
5.9 KiB
PHP
<?php
|
|
/**
|
|
* Special days.
|
|
*
|
|
* @category Alerts
|
|
* @package Pandora FMS
|
|
* @subpackage Community
|
|
* @version 1.0.0
|
|
* @license See below
|
|
*
|
|
* ______ ___ _______ _______ ________
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
*
|
|
* ============================================================================
|
|
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
|
|
* Please see http://pandorafms.org for full contribution list
|
|
* 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 for version 2.
|
|
* 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.
|
|
* ============================================================================
|
|
*/
|
|
|
|
// Extras required.
|
|
\ui_require_css_file('wizard');
|
|
\enterprise_include_once('meta/include/functions_alerts_meta.php');
|
|
|
|
if (\is_metaconsole() === true) {
|
|
\alerts_meta_print_header($tabs);
|
|
} else {
|
|
// Header.
|
|
\ui_print_page_header(
|
|
// Title.
|
|
__('Alerts').' » '.__('Configure special day'),
|
|
// Icon.
|
|
'images/gm_alerts.png',
|
|
// Return.
|
|
false,
|
|
// Help.
|
|
'alert_special_days',
|
|
// Godmode.
|
|
true,
|
|
// Options.
|
|
$tabs
|
|
);
|
|
}
|
|
|
|
$is_management_allowed = \is_management_allowed();
|
|
if ($is_management_allowed === false) {
|
|
if (\is_metaconsole() === false) {
|
|
$url_link = '<a target="_blank" href="'.ui_get_meta_url($url).'">';
|
|
$url_link .= __('metaconsole');
|
|
$url_link .= '</a>';
|
|
} else {
|
|
$url_link = __('any node');
|
|
}
|
|
|
|
\ui_print_warning_message(
|
|
__(
|
|
'This node is configured with centralized mode. All alert calendar information is read only. Go to %s to manage it.',
|
|
$url_link
|
|
)
|
|
);
|
|
}
|
|
|
|
if (empty($message) === false) {
|
|
echo $message;
|
|
}
|
|
|
|
$inputs = [];
|
|
|
|
// Date.
|
|
$inputs[] = [
|
|
'label' => __('Date'),
|
|
'arguments' => [
|
|
'type' => 'text',
|
|
'name' => 'date',
|
|
'required' => true,
|
|
'value' => $specialDay->date(),
|
|
],
|
|
'extra' => html_print_image(
|
|
'images/calendar_view_day.png',
|
|
true,
|
|
[
|
|
'alt' => 'calendar',
|
|
'onclick' => "scwShow(scwID('text-date'),this);",
|
|
'class' => 'invert_filter',
|
|
]
|
|
),
|
|
];
|
|
|
|
if (users_can_manage_group_all('LM') === true) {
|
|
$display_all_group = true;
|
|
} else {
|
|
$display_all_group = false;
|
|
}
|
|
|
|
// Group.
|
|
$inputs[] = [
|
|
'label' => __('Group'),
|
|
'arguments' => [
|
|
'type' => 'select_groups',
|
|
'returnAllGroup' => $display_all_group,
|
|
'name' => 'id_group',
|
|
'selected' => $specialDay->id_group(),
|
|
],
|
|
];
|
|
|
|
$days = [];
|
|
$days[1] = __('Monday');
|
|
$days[2] = __('Tuesday');
|
|
$days[3] = __('Wednesday');
|
|
$days[4] = __('Thursday');
|
|
$days[5] = __('Friday');
|
|
$days[6] = __('Saturday');
|
|
$days[7] = __('Sunday');
|
|
$days[8] = __('Holidays');
|
|
|
|
// Same day of the week.
|
|
$inputs[] = [
|
|
'label' => __('Same day of the week'),
|
|
'arguments' => [
|
|
'name' => 'day_code',
|
|
'type' => 'select',
|
|
'fields' => $days,
|
|
'selected' => ($specialDay->day_code() === null) ? 1 : $specialDay->day_code(),
|
|
],
|
|
];
|
|
|
|
// Description.
|
|
$inputs[] = [
|
|
'label' => __('Description'),
|
|
'arguments' => [
|
|
'type' => 'textarea',
|
|
'name' => 'description',
|
|
'required' => false,
|
|
'value' => io_safe_output($specialDay->description()),
|
|
'rows' => 50,
|
|
'columns' => 30,
|
|
],
|
|
];
|
|
|
|
// Calendar.
|
|
$inputs[] = [
|
|
'arguments' => [
|
|
'type' => 'hidden',
|
|
'name' => 'id_calendar',
|
|
'value' => $specialDay->id_calendar(),
|
|
],
|
|
];
|
|
|
|
if ($is_management_allowed === true) {
|
|
// Submit.
|
|
html_print_action_buttons(
|
|
html_print_submit_button(
|
|
(($create === true) ? __('Create') : __('Update')),
|
|
'button',
|
|
false,
|
|
[
|
|
'icon' => 'wand',
|
|
'form' => 'form-special-days',
|
|
],
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
// Print form.
|
|
HTML::printForm(
|
|
[
|
|
'form' => [
|
|
'id' => 'form-special-days',
|
|
'action' => $url.'&action=save&id='.$specialDay->id(),
|
|
'method' => 'POST',
|
|
],
|
|
'inputs' => $inputs,
|
|
],
|
|
false,
|
|
true
|
|
);
|
|
|
|
echo '<div id="modal-alert-templates" class="invisible"></div>';
|
|
|
|
ui_require_javascript_file('calendar');
|
|
ui_require_javascript_file('pandora_alerts');
|
|
|
|
?>
|
|
<script type="text/javascript">
|
|
$(document).ready (function () {
|
|
$("#submit-button").click (function (e) {
|
|
e.preventDefault();
|
|
var date = new Date($("#text-date").val());
|
|
var dateformat = date.toLocaleString(
|
|
'default',
|
|
{day: 'numeric', month: 'short', year: 'numeric'}
|
|
);
|
|
|
|
load_templates_alerts_special_days({
|
|
date: $("#text-date").val(),
|
|
id_group: $("#id_group").val(),
|
|
day_code: $("#day_code").val(),
|
|
id_calendar: '<?php echo $id_calendar; ?>',
|
|
btn_ok_text: '<?php echo __('Create'); ?>',
|
|
btn_cancel_text: '<?php echo __('Cancel'); ?>',
|
|
title: dateformat,
|
|
url: '<?php echo ui_get_full_url('ajax.php', false, false, false); ?>',
|
|
page: '<?php echo $ajax_url; ?>',
|
|
loading: '<?php echo __('Loading, this operation might take several minutes...'); ?>',
|
|
name_form: 'form-special-days'
|
|
});
|
|
});
|
|
});
|
|
</script>
|