2010-11-17 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/map_builder_wizard.php: deleted old file of old visual console editor. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3596 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
47e763d77f
commit
f661ccd92d
|
@ -1,3 +1,8 @@
|
|||
2010-11-17 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/map_builder_wizard.php: deleted old file of old visual
|
||||
console editor.
|
||||
|
||||
2010-11-17 Raúl Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* include/functions_events.php: Deleted old code. Simplify.
|
||||
|
|
|
@ -1,189 +0,0 @@
|
|||
<?php
|
||||
|
||||
// Pandora FMS - http://pandorafms.com
|
||||
// ==================================================
|
||||
// Copyright (c) 2005-2010 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.
|
||||
// Load global vars
|
||||
|
||||
global $config;
|
||||
|
||||
check_login ();
|
||||
|
||||
if (! give_acl ($config['id_user'], 0, "AW")) {
|
||||
pandora_audit("ACL Violation", "Trying to access map builder wizard");
|
||||
require ("general/noaccess.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$layout_id = (int) get_parameter ('id_layout');
|
||||
$layout = get_db_row ('tlayout', 'id', $layout_id);
|
||||
|
||||
// Header
|
||||
print_page_header (__('Visual map wizard').' - '.$layout["name"], "", false, "map_builder", true);
|
||||
|
||||
if (empty ($layout)) {
|
||||
print_error_message (__('No layout with this id found'));
|
||||
return;
|
||||
}
|
||||
|
||||
$layout_group = $layout["id_group"];
|
||||
|
||||
if (! give_acl ($config['id_user'], $layout_group, "AW")) {
|
||||
pandora_audit("ACL Violation", "Trying to access map builder wizard (forget URL parameter)");
|
||||
require ("general/noaccess.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
function process_wizard_add ($id_agents, $image, $id_layout, $range, $width = 0, $height = 0) {
|
||||
if (empty ($id_agents)) {
|
||||
print_error_message (__('No agents selected'));
|
||||
return false;
|
||||
}
|
||||
|
||||
$id_agents = (array) $id_agents;
|
||||
|
||||
$error = false;
|
||||
$pos_y = 10;
|
||||
$pos_x = 10;
|
||||
foreach ($id_agents as $id_agent) {
|
||||
if ($pos_x > 600) {
|
||||
$pos_x = 10;
|
||||
$pos_y = $pos_y + $range;
|
||||
}
|
||||
|
||||
process_sql_insert ('tlayout_data',
|
||||
array ('id_layout' => $id_layout,
|
||||
'pos_x' => $pos_x,
|
||||
'pos_y' => $pos_y,
|
||||
'label' => get_agent_name ($id_agent),
|
||||
'image' => $image,
|
||||
'id_agent' => $id_agent,
|
||||
'width' => $width,
|
||||
'height' => $height,
|
||||
'label_color' => '#000000')
|
||||
);
|
||||
|
||||
$pos_x = $pos_x + $range;
|
||||
}
|
||||
|
||||
print_success_message (__('Agent successfully added to layout'));
|
||||
echo '<h3><a href="index.php?sec=gmap&sec2=godmode/reporting/map_builder&id_layout='.$id_layout.'">'.__('Map builder').'</a></h3>';
|
||||
}
|
||||
|
||||
function process_wizard_add_modules ($id_modules, $image, $id_layout, $range, $width = 0, $height = 0) {
|
||||
if (empty ($id_modules)) {
|
||||
print_error_message (__('No modules selected'));
|
||||
return false;
|
||||
}
|
||||
|
||||
$id_modules = (array) $id_modules;
|
||||
|
||||
$error = false;
|
||||
$pos_y = 10;
|
||||
$pos_x = 10;
|
||||
|
||||
foreach ($id_modules as $id_module) {
|
||||
if ($pos_x > 600) {
|
||||
$pos_x = 10;
|
||||
$pos_y = $pos_y + $range;
|
||||
}
|
||||
|
||||
$id_agent = get_agentmodule_agent ($id_module);
|
||||
|
||||
process_sql_insert ('tlayout_data',
|
||||
array ('id_layout' => $id_layout,
|
||||
'pos_x' => $pos_x,
|
||||
'pos_y' => $pos_y,
|
||||
'label' => get_agentmodule_name ($id_module),
|
||||
'image' => $image,
|
||||
'id_agent' => $id_agent,
|
||||
'id_agente_modulo' => $id_module,
|
||||
'width' => $width,
|
||||
'height' => $height,
|
||||
'label_color' => '#000000')
|
||||
);
|
||||
|
||||
$pos_x = $pos_x + $range;
|
||||
}
|
||||
|
||||
print_success_message (__('Modules successfully added to layout'));
|
||||
}
|
||||
|
||||
$id_agents = get_parameter ('id_agents', array ());
|
||||
$id_modules = get_parameter ('module', array ());
|
||||
$image = get_parameter ('image');
|
||||
$add = (bool) get_parameter ('add', false);
|
||||
$range = (int) get_parameter ("range", 50);
|
||||
$width = (int) get_parameter ("width", 0);
|
||||
$height = (int) get_parameter ("height", 0);
|
||||
|
||||
if ($add) {
|
||||
process_wizard_add ($id_agents, $image, $layout["id"], $range, $width, $height);
|
||||
if (!empty ($id_modules)) {
|
||||
process_wizard_add_modules ($id_modules, $image, $layout["id"], $range, $width, $height);
|
||||
}
|
||||
}
|
||||
|
||||
$table->id = 'wizard_table';
|
||||
$table->width = '65%';
|
||||
$table->data = array ();
|
||||
$table->style = array ();
|
||||
$table->style[0] = 'font-weight: bold; vertical-align:top';
|
||||
$table->style[2] = 'font-weight: bold';
|
||||
$table->size = array ();
|
||||
$table->data = array ();
|
||||
|
||||
$images_list = array ();
|
||||
$all_images = list_files ('images/console/icons/', "png", 1, 0);
|
||||
foreach ($all_images as $image_file) {
|
||||
if (strpos ($image_file, "_bad"))
|
||||
continue;
|
||||
if (strpos ($image_file, "_ok"))
|
||||
continue;
|
||||
if (strpos ($image_file, "_warning"))
|
||||
continue;
|
||||
$image_file = substr ($image_file, 0, strlen ($image_file) - 4);
|
||||
$images_list[$image_file] = $image_file;
|
||||
}
|
||||
|
||||
$table->data[0][0] = __('Image');
|
||||
$table->data[0][1] = print_select ($images_list, 'image', '', '', '', '', true);
|
||||
|
||||
$table->data[1][0] = __('Image range (px)');
|
||||
$table->data[1][1] = print_input_text ('range', $range, '', 5, 5, true);
|
||||
|
||||
$table->data[2][0] = __('Image size (px)');
|
||||
$table->data[2][1] = __('Width').': '.print_input_text ('width', 0, '', 5, 5, true);
|
||||
$table->data[2][1] .= '<br />'.__('Height').': '.print_input_text ('height', 0, '', 5, 5, true);
|
||||
|
||||
$table->data[3][0] = __('Agents');
|
||||
$table->data[3][1] = print_select (get_group_agents ($layout_group, false, "none"),
|
||||
'id_agents[]', 0, false, '', '', true, true);
|
||||
|
||||
$table->data[4][0] = __('Modules');
|
||||
$table->data[4][1] = print_select (array (), 'module[]', 0, false, '', '', true, true);
|
||||
|
||||
echo '<form method="post" onsubmit="if (! confirm(\''.__('Are you sure?').'\')) return false;">';
|
||||
print_table ($table);
|
||||
|
||||
echo '<div class="action-buttons" style="width: '.$table->width.'" onsubmit="if (!confirm(\' '.__('Are you sure?').'\')) return false;">';
|
||||
print_input_hidden ('add', 1);
|
||||
print_input_hidden ('id_layout', $layout["id"]);
|
||||
print_submit_button (__('Add'), 'go', false, 'class="sub wizard wand"');
|
||||
echo '</div>';
|
||||
echo '</form>';
|
||||
?>
|
||||
<script language="javascript" type="text/javascript">
|
||||
$(document).ready (function () {
|
||||
$("#id_agents").change (agent_changed);
|
||||
});
|
||||
</script>
|
Loading…
Reference in New Issue