66 lines
1.9 KiB
PHP
66 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* ITSM View dashboard
|
|
*
|
|
* @category Console Class
|
|
* @package Pandora FMS
|
|
* @subpackage ITSM
|
|
* @version 1.0.0
|
|
* @license See below
|
|
*
|
|
* ______ ___ _______ _______ ________
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
*
|
|
* ============================================================================
|
|
* Copyright (c) 2005-2023 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.
|
|
* ============================================================================
|
|
*/
|
|
|
|
// Includes.
|
|
require_once $config['homedir'].'/include/class/HTML.class.php';
|
|
|
|
global $config;
|
|
|
|
ui_require_css_file('integriaims');
|
|
|
|
// Header tabs.
|
|
ui_print_standard_header(
|
|
__('ITSM Dashboard'),
|
|
'',
|
|
false,
|
|
'integria_tab',
|
|
false,
|
|
[],
|
|
[
|
|
[
|
|
'link' => 'index.php?sec=ITSM&sec2=operation/ITSM/itsm',
|
|
'label' => __('ITSM'),
|
|
],
|
|
[
|
|
'link' => 'index.php?sec=ITSM&sec2=operation/ITSM/itsm',
|
|
'label' => __('ITSM Dashboard'),
|
|
],
|
|
]
|
|
);
|
|
|
|
if (empty($incidences) === true) {
|
|
ui_print_info_message(
|
|
[
|
|
'no_close' => true,
|
|
'message' => __('Wip...........................'),
|
|
]
|
|
);
|
|
} else {
|
|
echo 'WIP...';
|
|
}
|