49 lines
2.0 KiB
PHP
49 lines
2.0 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - https://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2023 Pandora FMS
|
|
// Please see https://pandorafms.com/community/ 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; 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.
|
|
global $config;
|
|
check_login();
|
|
ui_require_css_file('first_task');
|
|
?>
|
|
|
|
<div class="new_task">
|
|
<div class="image_task">
|
|
<?php echo html_print_image('images/first_task/icono_grande_custom_reporting.png', true, ['title' => __('Custom Graphs')]); ?>
|
|
</div>
|
|
<div class="text_task">
|
|
<h3> <?php echo __('Create Custom Graph'); ?></h3><p id="description_task">
|
|
<?php
|
|
echo __(
|
|
"Graphs are designed to show the data collected by %s in a temporary scale defined by the user.
|
|
%s Graphs display data in real time. They are generated every time the operator requires any of them and display the up-to-date state.
|
|
There are two types of graphs: The agent's automated graphs and the graphs the user customizes by using one or more modules to do so.",
|
|
get_product_name(),
|
|
get_product_name()
|
|
);
|
|
?>
|
|
</p>
|
|
<form action="index.php?sec=reporting&sec2=godmode/reporting/graph_builder" method="post">
|
|
<?php
|
|
html_print_action_buttons(
|
|
html_print_submit_button(
|
|
__('Create Custom Graph'),
|
|
'button_task',
|
|
false,
|
|
['icon' => 'wand'],
|
|
true
|
|
)
|
|
);
|
|
?>
|
|
</form>
|
|
</div>
|
|
</div>
|