2015-03-26 13:12:48 +01:00
< ? php
2023-03-03 13:52:28 +01:00
/**
* Map builder First Task .
*
* @ category Topology maps
* @ package Pandora FMS
* @ subpackage Visual consoles
* @ version 1.0 . 0
* @ license See below
*
* ______ ___ _______ _______ ________
2023-06-08 12:42:10 +02:00
* | __ \ .-----.--.--.--| |.-----.----.-----. | ___ | | | __ |
* | __ /| _ | | _ || _ | _ | _ | | ___ | | __ |
2023-03-03 13:52:28 +01:00
* | ___ | | ___ . _ | __ | __ | _____ || _____ | __ | | ___ . _ | | ___ | | __ | _ | __ | _______ |
*
* ============================================================================
2023-06-08 11:53:13 +02:00
* Copyright ( c ) 2007 - 2023 Pandora FMS
2023-06-08 13:19:01 +02:00
* Please see https :// pandorafms . com / community / for full contribution list
2023-03-03 13:52:28 +01:00
* 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 .
* ============================================================================
*/
2015-07-02 15:24:39 +02:00
2023-03-03 13:52:28 +01:00
// Begin.
2015-03-26 13:12:48 +01:00
global $config ;
2017-03-06 12:54:48 +01:00
global $vconsoles_write ;
global $vconsoles_manage ;
2019-01-30 16:18:44 +01:00
check_login ();
2019-11-21 18:21:46 +01:00
ui_require_css_file ( 'first_task' );
2015-07-06 18:18:20 +02:00
2017-03-06 12:54:48 +01:00
if ( $vconsoles_write || $vconsoles_manage ) {
2019-01-30 16:18:44 +01:00
?>
2015-03-26 13:12:48 +01:00
2015-06-25 08:21:53 +02:00
< div class = " new_task " >
2019-01-30 16:18:44 +01:00
< div class = " image_task " >
2019-11-21 18:21:46 +01:00
< ? php echo html_print_image ( 'images/first_task/icono_grande_visualconsole.png' , true , [ 'title' => __ ( 'Visual Console' )]); ?>
2019-01-30 16:18:44 +01:00
</ div >
< div class = " text_task " >
2023-03-03 13:52:28 +01:00
< h3 > < ? php echo __ ( 'Visual Consoles' ); ?> </h3><p id="description_task">
2019-01-30 16:18:44 +01:00
< ? php
echo __ (
'%s allows users to create visual maps on which each user is able to create his or her ' . 'own monitoring map. The new visual console editor is much more practical, although the prior ' . " visual console editor had its advantages. On the new visual console, we've been successful in " . " imitating the sensation and touch of a drawing application like GIMP. We've also simplified the " . " editor by dividing it into several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of " . " Elements' and 'Editor'. The items the %s Visual Map was designed to handle are " . " 'static images', 'percentage bars', 'module graphs' and 'simple values'. " ,
get_product_name (),
get_product_name ()
);
?>
</ p >
< form action = " index.php?sec=network&sec2=godmode/reporting/visual_console_builder " method = " post " >
2023-03-03 13:52:28 +01:00
< ? php
html_print_input_hidden ( 'edit_layout' , 1 );
html_print_action_buttons (
html_print_submit_button (
__ ( 'Create a Visual Console' ),
'button_task' ,
false ,
[ 'icon' => 'wand' ],
true
)
);
?>
2019-01-30 16:18:44 +01:00
</ form >
</ div >
2015-03-26 13:12:48 +01:00
</ div >
2019-01-30 16:18:44 +01:00
< ? php
}