diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index cccbca8965..0aeb7e188b 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-02-28 Sergio Martin + + * include/functions_html.php + operation/agentes/estado_generalagente.php: Improve the + forced title in images and the agent operation view + 2013-02-28 Dario Rodriguez * include/functions_api.php: Added new API function to diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index f96f5cee69..f239c98665 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1675,7 +1675,7 @@ function html_print_image ($src, $return = false, $options = false, $return_src } // If title is provided activate forced title - if (isset ($options["title"])) { + if (isset ($options["title"]) && $options["title"] != '') { if (isset ($options['class'])) { $options['class'] .= ' forced_title'; } diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 86a6aff814..750b1a1a07 100644 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -52,12 +52,12 @@ if (! check_acl ($config["id_user"], $agent["id_grupo"], "AR") && !$is_extra) { // START: TABLE AGENT BUILD $table_agent->id = 'agent_details_main'; -$table_agent->width = '500px'; +$table_agent->width = '100%'; $table_agent->cellspacing = 4; $table_agent->cellpadding = 4; $table_agent->class = 'databox_frame'; -$table_agent->style[1] = 'width: 100px;'; -$table_agent->style[2] = 'width: 16px;'; +$table_agent->style[1] = 'width: 100px; text-align:center;'; +$table_agent->style[2] = 'width: 16px; text-align:center;'; $data = array(); $agent_name = ui_print_agent_name ($agent["id_agente"], true, 500, "font-size: medium;", true); @@ -98,13 +98,39 @@ if (!empty($addresses)) { } $table_agent->cellstyle[1][0] = 'padding-left:50px;'; -$data[1] = graph_agent_status ($id_agente, 120, 120, true); -$table_agent->rowspan[1][1] = 5; -$table_agent->colspan[1][1] = 2; +$data[1] = graph_agent_status ($id_agente, 160, 160, true); +$table_agent->rowspan[1][1] = 6; $table_agent->data[] = $data; $table_agent->rowclass[] = ''; +$data = array(); +$data[0] = html_print_image('images/information.png', true, array('title' => __('Agent Version'))) . '  '; +$data[0] .= $agent["agent_version"]; +$table_agent->cellstyle[][0] = 'padding-left:50px;'; +$table_agent->data[] = $data; +$table_agent->rowclass[] = ''; + +$data = array(); +$data[0] = ui_print_os_icon ($agent["id_os"], true, array('title' => __('Operating system'))) . '  '; +$data[0] .= ' '.$agent["os_version"].' '; +$table_agent->cellstyle[][0] = 'padding-left:50px;'; +$table_agent->data[] = $data; +$table_agent->rowclass[] = ''; + +$data = array(); +$data[0] = html_print_image('images/bricks.png', true, array('title' => __('Parent'))) . '  '; +if ($agent["id_parent"] == 0) { + $data[0] .= '' . __('N/A') . ''; +} +else { + $data[0] .= ''.agents_get_name ($agent["id_parent"]).''; +} + +$table_agent->cellstyle[][0] = 'padding-left:50px;'; +$table_agent->data[] = $data; +$table_agent->rowclass[] = ''; + $data = array(); $data[0] = html_print_image('images/default_list.png', true, array('title' => __('Description'))) . '  '; $data[0] .= empty($agent["comentarios"]) ? '' . __('N/A') . '' : $agent["comentarios"]; @@ -112,88 +138,57 @@ $table_agent->cellstyle[][0] = 'padding-left:50px;'; $table_agent->data[] = $data; $table_agent->rowclass[] = ''; -$data = array(); -$data[0] = html_print_image('images/clock.png', true, array('title' => __('Interval'))) . '  '; -$data[0] .= human_time_description_raw ($agent["intervalo"]); -$table_agent->cellstyle[][0] = 'padding-left:50px;'; -$table_agent->data[] = $data; -$table_agent->rowclass[] = ''; - -$data[0] = html_print_image('images/go_next.png', true, array('title' => __('Next contact'))) . '  '; -$progress = agents_get_next_contact($id_agente); -$data[0] .= progress_bar($progress, 200, 20); -$table_agent->cellstyle[][0] = 'padding-left:50px;'; -$table_agent->data[] = $data; -$table_agent->rowclass[] = ''; - // END: TABLE AGENT BUILD -$table->id = 'agent_details'; -$table->width = '100%'; -$table->cellspacing = 4; -$table->cellpadding = 4; -$table->class = 'databox'; +// START: TABLE CONTACT BUILD +$table_contact->id = 'agent_contact_main'; +$table_contact->width = '100%'; +$table_contact->cellspacing = 4; +$table_contact->cellpadding = 4; +$table_contact->class = 'databox'; +$table_contact->style[0] = 'width: 30%;'; +$table_contact->style[1] = 'width: 70%;'; + +$table_contact->head[0] = html_print_image('images/clock.png', true) . ' ' . __('Agent contact') . ''; +$table_contact->head_colspan[0] = 2; $data = array(); -$data[0] = html_print_table($table_agent, true); - -$table->colspan[0][0] = 2; -$table->rowspan[0][0] = 5; - -$data[2] = '' . __('Parent') . ''; -$data[3] = ''.agents_get_name ($agent["id_parent"]).''; - -$data[4] = '
'; -$data[4] .= '' . html_print_image("images/refresh.png", true, array("border" => '0', "title" => __('Refresh data'), "alt" => "")) . ' '; -$data[4] .= '' . html_print_image("images/target.png", true, array("border" => '0', "title" => __('Force'), "alt" => "")) . ''; -$data[4] .= '
'; - -$table->data[] = $data; -$table->rowclass[] = ''; +$data[0] = '' . __('Interval') . ''; +$data[1] = human_time_description_raw ($agent["intervalo"]); +$table_contact->data[] = $data; $data = array(); - -$data[2] = '' . __('OS') . ''; -$data[3] = ui_print_os_icon ($agent["id_os"], true, true); - -// Want to print last 15 characters of OS version, or start from 0 if smaller -$osversion_offset = strlen($agent["os_version"]); -if ($osversion_offset > 15) - $osversion_offset = $osversion_offset - 15; -else - $osversion_offset = 0; - - -$data[3] .= ' '.$agent["os_version"].' '; -$table->data[] = $data; -$table->rowclass[] = ''; - -$data = array(); -$data[2] = '' . __('Agent Version') . ''; -$data[3] = $agent["agent_version"]; -$table->data[] = $data; -$table->rowclass[] = ''; - -$data = array(); -$data[2] = '' . __('Last contact') . ' / ' . __('Remote') . ''; -$data[3] = ui_print_timestamp ($agent["ultimo_contacto"], true); -$data[3] .= " / "; +$data[0] = '' . __('Last contact') . ' / ' . __('Remote') . ''; +$data[1] = ui_print_timestamp ($agent["ultimo_contacto"], true); +$data[1] .= " / "; if ($agent["ultimo_contacto_remoto"] == "01-01-1970 00:00:00") { - $data[3] .= __('Never'); + $data[1] .= __('Never'); } else { - $data[3] .= $agent["ultimo_contacto_remoto"]; + $data[1] .= $agent["ultimo_contacto_remoto"]; } -$table->data[] = $data; -$table->rowclass[] = ''; +$table_contact->data[] = $data; -$data = array(); -$data[0] = '' . __('Events (24h)') . ''; -$data[1] = graph_graphic_agentevents ($id_agente, 290, 15, 86400, '', true); -$table->data[] = $data; -$table->rowclass[] = ''; +$data[0] = '' . __('Next contact') . ''; +$progress = agents_get_next_contact($id_agente); +$data[1] = progress_bar($progress, 200, 20); +$table_contact->data[] = $data; + +// END: TABLE CONTACT BUILD + +// START: TABLE DATA BUILD +$table_data->id = 'agent_data_main'; +$table_data->width = '100%'; +$table_data->cellspacing = 4; +$table_data->cellpadding = 4; +$table_data->class = 'databox'; +$table_data->style[0] = 'width: 30%;'; +$table_data->style[1] = 'width: 70%;'; + +$table_data->head[0] = html_print_image('images/page_white_text.png', true) . ' ' . __('Agent info') . ''; +$table_data->head_colspan[0] = 2; if ($config['activate_gis'] || $agent['url_address'] != '') { $data = array(); @@ -226,17 +221,7 @@ if ($config['activate_gis'] || $agent['url_address'] != '') { $data[$col] = '' . $agent["url_address"] . ''; } - $table->data[] = $data; - $table->rowclass[] = ''; -} - -// ACCESS RATE GRAPH -if ($config["agentaccess"]) { - $data = array(); - $data[0] = '' . __('Agent access rate (24h)') . ''; - $data[1] = graphic_agentaccess($id_agente, 300, 110, 86400, true); - $table->data[] = $data; - $table->rowclass[] = ''; + $table_data->data[] = $data; } // Timezone Offset @@ -245,7 +230,6 @@ if ($agent['timezone_offset'] != 0) { $data[0] = '' . __('Timezone Offset') . ''; $data[1] = $agent["timezone_offset"]; $table->data[] = $data; - $table->rowclass[] = ''; } // Custom fields @@ -259,13 +243,64 @@ foreach ($fields as $field) { $data[0] = '' . $field['name'] . ui_print_help_tip (__('Custom field'), true) . ''; $custom_value = db_get_value_filter('description', 'tagent_custom_data', array('id_field' => $field['id_field'], 'id_agent' => $id_agente)); if ($custom_value === false || $custom_value == '') { - $custom_value = '-'.__('empty').'-'; + $custom_value = ''.__('N/A').''; } $data[1] = $custom_value; - $table->data[] = $data; - $table->rowclass[] = ''; + $table_data->data[] = $data; } +// END: TABLE DATA BUILD + +$table = null; +$table->id = 'agent_details'; +$table->width = '100%'; +$table->cellspacing = 4; +$table->cellpadding = 4; +$table->class = 'databox'; +$table->style = array_fill(0, 3, 'vertical-align: top;'); + +$data = array(); +$data[0] = html_print_table($table_agent, true); +$data[1] = html_print_table($table_contact, true) . '
'; +$data[1] .= html_print_table($table_data, true); + +$table->rowspan[0][1] = 2; + +$data[2] = '
'; +$data[2] .= '' . html_print_image("images/refresh.png", true, array("border" => '0', "title" => __('Refresh data'), "alt" => "")) . ' '; +$data[2] .= '' . html_print_image("images/target.png", true, array("border" => '0', "title" => __('Force'), "alt" => "")) . ''; +$data[2] .= '
'; + +$table->data[] = $data; +$table->rowclass[] = ''; + +$data = array(); +$data[0] = '
+ ' . + __('Events (24h)') . + '' . + '
' . + graph_graphic_agentevents ($id_agente, 300, 15, 86400, '', true) . + '
' . + '
'; + +// ACCESS RATE GRAPH +if ($config["agentaccess"]) { + $data[0] .= '
+ ' . + __('Agent access rate (24h)') . + '' . + '
' . + graphic_agentaccess($id_agente, 300, 110, 86400, true) . + '
' . + '
'; +} + +$table->cellstyle[1][0] = 'text-align:center;'; + +$table->data[] = $data; +$table->rowclass[] = ''; + html_print_table($table); unset($table); ?> \ No newline at end of file