diff --git a/pandora_console/extensions/system_info.php b/pandora_console/extensions/system_info.php index 07c4570dd0..a6248a54d3 100644 --- a/pandora_console/extensions/system_info.php +++ b/pandora_console/extensions/system_info.php @@ -421,7 +421,7 @@ function mainSystemInfo() { $table->width = '100%'; $table->class = 'databox filters'; $table->align = array(); - $table->align[1] = 'right'; + if ($pandora_diag) { $table->data[0][0] = '' . __('Pandora Diagnostic info') . ""; @@ -429,23 +429,24 @@ function mainSystemInfo() { else { $table->data[0][0] = __('Pandora Diagnostic info'); } - $table->data[0][1] = html_print_checkbox('pandora_diag', 1, $pandora_diag, true); + $table->data[0][0] .= html_print_checkbox('pandora_diag', 1, $pandora_diag, true); if ($system_info) { - $table->data[1][0] = '' . __('System info') . ''; + $table->data[0][2] = '' . __('System info') . ''; } else { - $table->data[1][0] = __('System info'); + $table->data[0][2] = __('System info'); } - $table->data[1][1] = html_print_checkbox('system_info', 1, $system_info, true); + $table->data[0][2] .= html_print_checkbox('system_info', 1, $system_info, true); + if ($log_info) { - $table->data[2][0] = '' . __('Log Info') . ''; + $table->data[0][3] = '' . __('Log Info') . ''; } else { - $table->data[2][0] = __('Log Info'); + $table->data[0][3] = __('Log Info'); } - $table->data[2][1] = html_print_checkbox('log_info', 1, $log_info, true); - $table->data[3][0] = __('Number lines of log'); - $table->data[3][1] = html_print_input_text('log_num_lines', $log_num_lines, __('Number lines of log'), 5, 10, true); + $table->data[0][3] .= html_print_checkbox('log_info', 1, $log_info, true); + $table->data[0][4] = __('Number lines of log'); + $table->data[0][4] .= html_print_input_text('log_num_lines', $log_num_lines, __('Number lines of log'), 5, 10, true); $default_location = $config['attachment_store'] . '/last_info.zip'; diff --git a/pandora_console/godmode/category/category.php b/pandora_console/godmode/category/category.php index 26b0c7ff52..3a5da58aee 100755 --- a/pandora_console/godmode/category/category.php +++ b/pandora_console/godmode/category/category.php @@ -136,9 +136,7 @@ if (!empty($result)) { html_print_table ($table); if (defined('METACONSOLE')) { - echo ""; - echo ""; - echo ""; - echo ""; - echo "
"; + echo "
"; if(defined('METACONSOLE')) echo '
'; else @@ -146,9 +144,7 @@ if (!empty($result)) { html_print_input_hidden ("create_category", "1", true); html_print_submit_button (__('Create category'), 'create_button', false, 'class="sub next"'); echo "
"; - echo "
"; + echo ""; } } else { @@ -157,17 +153,13 @@ else { } // Form to add new categories or search categories if (!defined('METACONSOLE')) { - echo ""; - echo ""; - echo ""; - echo ""; - echo "
"; + echo "
"; echo '
'; html_print_input_hidden ("create_category", "1", true); html_print_submit_button (__('Create category'), 'create_button', false, 'class="sub next"'); echo "
"; - echo "
"; + echo ""; } enterprise_hook('close_meta_frame'); diff --git a/pandora_console/godmode/groups/group_list.php b/pandora_console/godmode/groups/group_list.php index 4b8950bf8c..c437304e3d 100644 --- a/pandora_console/godmode/groups/group_list.php +++ b/pandora_console/godmode/groups/group_list.php @@ -332,6 +332,8 @@ if (!empty($groups)) { $table->align = array (); $table->align[2] = 'left'; $table->align[5] = 'left'; + $table->size[4] = '30%'; + $table->size[5] = '10%'; $table->data = array (); $offset = (int)get_parameter('offset', 0); diff --git a/pandora_console/godmode/modules/manage_nc_groups.php b/pandora_console/godmode/modules/manage_nc_groups.php index 925af86052..f784e5bb4d 100644 --- a/pandora_console/godmode/modules/manage_nc_groups.php +++ b/pandora_console/godmode/modules/manage_nc_groups.php @@ -199,7 +199,7 @@ $table->align = array (); $table->align[1] = 'left'; $table->size = array (); $table->size[0] = '80%'; -$table->size[1] = '50px'; +$table->size[1] = '10%'; $table->data = array (); $total_groups = db_get_all_rows_filter ('tnetwork_component_group', false, 'COUNT(*) AS total'); diff --git a/pandora_console/godmode/netflow/nf_edit.php b/pandora_console/godmode/netflow/nf_edit.php index 760ca73f96..f3ffc36bcc 100644 --- a/pandora_console/godmode/netflow/nf_edit.php +++ b/pandora_console/godmode/netflow/nf_edit.php @@ -152,7 +152,7 @@ if (isset($data)) { echo "
"; html_print_input_hidden('multiple_delete', 1); html_print_table ($table); - echo "
"; + echo "
"; html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete"'); echo "
"; @@ -163,7 +163,7 @@ else { } echo ''; -echo "
"; +echo "
"; html_print_submit_button (__('Create filter'), 'crt', false, 'class="sub wand"'); echo "
"; echo ""; diff --git a/pandora_console/godmode/reporting/graphs.php b/pandora_console/godmode/reporting/graphs.php index 6c3cf632a3..6662a69a3e 100644 --- a/pandora_console/godmode/reporting/graphs.php +++ b/pandora_console/godmode/reporting/graphs.php @@ -181,25 +181,35 @@ if (!empty ($graphs)) { 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 graphs')."
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no defined graphs.') ) ); } -if (check_acl ($config['id_user'], 0, "RW")) { - echo '
'; - echo '
'; - html_print_submit_button (__('Create graph'), 'create', false, 'class="sub next"'); - echo "
"; - echo "
"; -} +echo ""; + echo ""; + echo ""; + echo ""; +echo "
"; + echo "
"; + if (!empty($graphs)){ + echo "
"; + html_print_input_hidden('multiple_delete', 1); + html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete"'); + echo "
"; + } + if (check_acl ($config['id_user'], 0, "RW")) { + echo '
'; + html_print_submit_button (__('Create graph'), 'create', false, 'class="sub next" style="margin-right:5px;"'); + echo "
"; + } + echo "
"; + echo "
"; + + + + ?>