diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index e27fabbac2..55eca43d77 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2012-02-21 Vanessa Gil + + * godmode/reporting/graph_template_item_editor.php + godmode/reporting/graph_template_list.php + include/functions_reporting.php: Modified templates for combined + graphs. + 2012-02-21 Miguel de Dios * include/functions_agents.php, diff --git a/pandora_console/godmode/reporting/graph_template_item_editor.php b/pandora_console/godmode/reporting/graph_template_item_editor.php index 4a0fa57b59..f5d81d7905 100644 --- a/pandora_console/godmode/reporting/graph_template_item_editor.php +++ b/pandora_console/godmode/reporting/graph_template_item_editor.php @@ -26,12 +26,13 @@ if (! check_acl ($config['id_user'], 0, "IW")) { $id_template = get_parameter('id',0); $delete = get_parameter('delete',0); - +$multiple_delete = (bool)get_parameter('multiple_delete', 0); $create = get_parameter('add',0); $buttons['template_list'] = '' . html_print_image ("images/god6.png", true, array ("title" => __('Template list'))) . ''; + // Header ui_print_page_header (__('Graph template editor'), "", false, "", true, $buttons); @@ -82,6 +83,33 @@ if ($delete) { __('Not deleted. Error deleting data')); } +if ($multiple_delete) { + $ids = (array)get_parameter('delete_multiple', array()); + + db_process_sql_begin(); + + foreach ($ids as $id) { + $result = db_process_sql_delete ('tgraph_source_template', + array ('id_gs_template' => $id)); + + if ($result === false) { + db_process_sql_rollback(); + break; + } + } + + if ($result !== false) { + db_process_sql_commit(); + } + + if ($result !== false) $result = true; + else $result = false; + + ui_print_result_message ($result, + __('Successfully deleted'), + __('Not deleted. Error deleting data')); +} + if ($id_template) { $sql = "SELECT * FROM tgraph_source_template where id_template=$id_template"; $templates = db_get_all_rows_sql($sql); @@ -89,18 +117,18 @@ if ($id_template) { $table_aux->width = '90%'; $table_aux->size = array(); - $table_aux->size[0] = '40%'; - $table_aux->size[1] = '30%'; - $table_aux->size[2] = '20%'; - $table_aux->size[3] = '30px'; + //$table_aux->size[0] = '40%'; + $table_aux->size[1] = '40%'; + $table_aux->size[2] = '30%'; + $table_aux->size[3] = '50px'; - $table_aux->head[0] = __('Agent'); - $table_aux->align[0] = 'center'; + //$table_aux->head[0] = __('Agent'); + //$table_aux->align[0] = 'center'; $table_aux->head[1] = __('Module'); $table_aux->align[1] = 'center'; $table_aux->head[2] = __('Weight'); $table_aux->align[2] = 'center'; - $table_aux->head[3] = __('Delete'); + $table_aux->head[3] = __('Action') . html_print_checkbox('all_delete', 0, false, true, false, 'check_all_checkboxes();'); $table_aux->align[3] = 'center'; $table_aux->data = array(); @@ -108,17 +136,27 @@ if ($id_template) { foreach ($templates as $template) { $data = array(); - $data[0] = $template['agent']; + //$data[0] = $template['agent']; $data[1] = $template['module']; $data[2] = $template['weight']; $data[3] = "" . - html_print_image('images/cross.png', true, array('title' => __('Delete'))) . ""; - + html_print_image('images/cross.png', true, array('title' => __('Delete'))) . "" . + html_print_checkbox_extended ('delete_multiple[]', $template['id_gs_template'], false, false, '', 'class="check_delete"', true); + array_push ($table_aux->data, $data); } + + if(isset($data)) { + echo "
"; + html_print_input_hidden('multiple_delete', 1); + html_print_table ($table_aux); + echo "
"; + html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete"'); + echo "
"; + echo "
"; + } - html_print_table($table_aux); } } @@ -126,13 +164,13 @@ if ($id_template) { $table->width = '90%'; $table->size = array(); -$table->size[0] = '40%'; +//$table->size[0] = '40%'; $table->size[1] = '40%'; $table->data = array(); -$table->data[0][0] = ''.__('Agent').''; -$table->data[1][0] = html_print_input_text('agent', '', '', 30, 255, true); +//$table->data[0][0] = ''.__('Agent').''; +//$table->data[1][0] = html_print_input_text('agent', '', '', 30, 255, true); $table->data[0][1] = ''.__('Module').''; $table->data[1][1] = html_print_input_text('module', '', '', 30, 255, true); $table->data[2][0] = ''.__('Weight').''; @@ -149,3 +187,16 @@ html_print_submit_button (__('Add'), 'crt', false, 'class="sub add"'); echo ''; echo ''; ?> + + diff --git a/pandora_console/godmode/reporting/graph_template_list.php b/pandora_console/godmode/reporting/graph_template_list.php index 05725c4cff..9796ca571b 100644 --- a/pandora_console/godmode/reporting/graph_template_list.php +++ b/pandora_console/godmode/reporting/graph_template_list.php @@ -31,11 +31,16 @@ $buttons['graph_list'] = ' __('Graph list'))) . ''; +$buttons['wizard'] = '' + . html_print_image ("images/wand.png", true, array ("title" => __('Wizard'))) + . ''; + // Header ui_print_page_header (__('Graph template management'), "", false, "", true, $buttons); $delete = get_parameter ('delete_template', 0); $id_template = get_parameter('id', 0); +$multiple_delete = (bool)get_parameter('multiple_delete', 0); if ($delete) { $result = db_process_sql_delete ('tgraph_template', @@ -51,6 +56,34 @@ if ($delete) { __('Not deleted. Error deleting data')); } +if ($multiple_delete) { + $ids = (array)get_parameter('delete_multiple', array()); + + db_process_sql_begin(); + + foreach ($ids as $id) { + $result = db_process_sql_delete ('tgraph_template', + array ('id_graph_template' => $id)); + + if ($result === false) { + db_process_sql_rollback(); + break; + } + } + + if ($result !== false) { + db_process_sql_commit(); + } + + if ($result !== false) $result = true; + else $result = false; + + ui_print_result_message ($result, + __('Successfully deleted'), + __('Not deleted. Error deleting data')); +} + + $own_info = get_user_info ($config['id_user']); if ($own_info['is_admin'] || check_acl ($config['id_user'], 0, "PM")) $return_all_group = true; @@ -71,7 +104,7 @@ if (! empty ($templates)) { $table->size[3] = '50px'; if (check_acl ($config['id_user'], 0, "AW")) { $table->align[4] = 'center'; - $table->head[4] = __('Delete'); + $table->head[4] = __('Action'). html_print_checkbox('all_delete', 0, false, true, false, 'check_all_checkboxes();'); $table->size[4] = '50px'; } $table->data = array (); @@ -88,12 +121,20 @@ if (! empty ($templates)) { if (check_acl ($config['id_user'], 0, "AW")) { $data[4] = '' . html_print_image("images/cross.png", true) . ''; + return false;">' . html_print_image("images/cross.png", true) . ''. + html_print_checkbox_extended ('delete_multiple[]', $template['id_graph_template'], false, false, '', 'class="check_delete"', true); } array_push ($table->data, $data); } + + echo "
"; + html_print_input_hidden('multiple_delete', 1); html_print_table ($table); + echo "
"; + html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete"'); + echo "
"; + echo "
"; } else { echo "
".__('There are no defined graph templates')."
"; @@ -106,3 +147,16 @@ echo ""; echo ""; ?> + + diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 2ef8fe6160..af9347d6d3 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -4682,7 +4682,7 @@ function reporting_template_graphs_get_user ($id_user = 0, $only_names = false, } else { $templates[$template['id_graph_template']] = $template; - $templatesCount = db_get_value_sql("SELECT COUNT(id_gs) FROM tgraph_source WHERE id_graph = " . $template['id_graph_template']); + $templatesCount = db_get_value_sql("SELECT COUNT(id_gs_template) FROM tgraph_source_template WHERE id_template = " . $template['id_graph_template']); $templates[$template['id_graph_template']]['graphs_template_count'] = $templatesCount; } }