52 lines
2.4 KiB
PHP
52 lines
2.4 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// 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; 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;
|
|
global $incident_w;
|
|
global $incident_m;
|
|
check_login();
|
|
ui_require_css_file('first_task');
|
|
?>
|
|
<?php
|
|
ui_print_info_message(['no_close' => true, 'message' => __('There are no incidents defined yet.') ]);
|
|
|
|
if ($incident_w || $incident_m) {
|
|
?>
|
|
|
|
<div class="new_task">
|
|
<div class="image_task">
|
|
<?php echo html_print_image('images/first_task/icono_grande_incidencia.png', true, ['title' => __('Incidents')]); ?>
|
|
</div>
|
|
<div class="text_task">
|
|
<h3> <?php echo __('Create Incidents'); ?></h3><p id="description_task">
|
|
<?php
|
|
echo __(
|
|
"Besides receiving and processing data to monitor systems or applications,
|
|
you're also required to monitor possible incidents which might take place on these subsystems within the system's monitoring process.
|
|
For it, the %s team has designed an incident manager from which any user is able to open incidents,
|
|
that explain what's happened on the network, and update them with comments and files, at any time, in case there is a need to do so.
|
|
This system allows users to work as a team, along with different roles and work-flow systems which allow an incident to be
|
|
moved from one group to another, and members from different groups and different people could work on the same incident, sharing information and files.
|
|
",
|
|
get_product_name()
|
|
);
|
|
?>
|
|
</p>
|
|
<form action="index.php?sec=workspace&sec2=operation/incidents/incident_detail&insert_form=1" method="post">
|
|
<input type="submit" class="button_task" value="<?php echo __('Create Incidents'); ?>" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|