Changed visual and changed images

This commit is contained in:
m-lopez-f 2015-04-22 09:51:34 +02:00
parent b39d21b034
commit a7117fca61
15 changed files with 28 additions and 21 deletions

View File

@ -176,7 +176,7 @@ function mainAgentsModules() {
return; return;
} }
echo '<table cellpadding="4" cellspacing="4" border="0" style="width:98%;" class="agents_modules_table">'; echo '<table cellpadding="4" cellspacing="4" border="0" style="width:100%;" class="agents_modules_table">';
echo "<tr>"; echo "<tr>";

View File

@ -46,6 +46,8 @@ function pandora_realtime_graphs () {
$table->id = 'table-form'; $table->id = 'table-form';
$table->class = 'databox filters'; $table->class = 'databox filters';
$table->style = array (); $table->style = array ();
$table->cellpadding = '0';
$table->cellspacing = '0';
$table->style[0] = 'font-weight: bold;'; $table->style[0] = 'font-weight: bold;';
$table->style[1] = 'font-weight: bold;'; $table->style[1] = 'font-weight: bold;';
$table->style[2] = 'font-weight: bold;'; $table->style[2] = 'font-weight: bold;';
@ -63,7 +65,6 @@ function pandora_realtime_graphs () {
$refresh = get_parameter('refresh', '1000'); $refresh = get_parameter('refresh', '1000');
$data['graph'] = __('Graph') . '&nbsp;&nbsp;' . html_print_select ($graph_fields, 'graph', $graph, '', '', 0, true); $data['graph'] = __('Graph') . '&nbsp;&nbsp;' . html_print_select ($graph_fields, 'graph', $graph, '', '', 0, true);
$data['reset'] = html_print_button(__('Clear graph'), 'reset', false, 'clearGraph()', 'class="sub delete"', true);
$refresh_fields[1000] = human_time_description_raw(1, true, 'large'); $refresh_fields[1000] = human_time_description_raw(1, true, 'large');
$refresh_fields[5000] = human_time_description_raw(5, true, 'large'); $refresh_fields[5000] = human_time_description_raw(5, true, 'large');
@ -72,7 +73,7 @@ function pandora_realtime_graphs () {
$data['refresh'] = __('Refresh interval') . '&nbsp;&nbsp;' . html_print_select ($refresh_fields, 'refresh', $refresh, '', '', 0, true); $data['refresh'] = __('Refresh interval') . '&nbsp;&nbsp;' . html_print_select ($refresh_fields, 'refresh', $refresh, '', '', 0, true);
$data['incremental'] = __('Incremental') . '&nbsp;&nbsp;' . html_print_checkbox ('incremental', 1, 0, true); $data['incremental'] = __('Incremental') . '&nbsp;&nbsp;' . html_print_checkbox ('incremental', 1, 0, true);
$data['reset'] = html_print_button(__('Clear graph'), 'reset', false, 'clearGraph()', 'class="sub delete" style="margin-top:0px;"', true);
$table->data[] = $data; $table->data[] = $data;

BIN
pandora_console/images/create_file.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 B

After

Width:  |  Height:  |  Size: 429 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 411 B

BIN
pandora_console/images/email_inbox.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 506 B

BIN
pandora_console/images/email_mc.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 411 B

BIN
pandora_console/images/email_outbox.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 384 B

BIN
pandora_console/images/gm_log.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 434 B

View File

@ -876,13 +876,13 @@ function ui_format_alert_row ($alert, $agent = true, $url = '', $agent_style = f
$actions = alerts_get_alert_agent_module_actions ($alert['id'], false); $actions = alerts_get_alert_agent_module_actions ($alert['id'], false);
if (!empty($actions)) { if (!empty($actions)) {
$actionText = '<div style="margin-left: 10px;"><ul class="action_list">'; $actionText = '<div><ul class="action_list">';
foreach ($actions as $action) { foreach ($actions as $action) {
$actionText .= '<div><span class="action_name"><li>' . $action['name']; $actionText .= '<div style="margin-bottom: 5px;" ><span class="action_name"><li>' . $action['name'];
if ($action["fires_min"] != $action["fires_max"]){ if ($action["fires_min"] != $action["fires_max"]){
$actionText .= " (".$action["fires_min"] . " / ". $action["fires_max"] . ")"; $actionText .= " (".$action["fires_min"] . " / ". $action["fires_max"] . ")";
} }
$actionText .= '</li></span><br /></div>'; $actionText .= '</li></span></div>';
} }
$actionText .= '</ul></div>'; $actionText .= '</ul></div>';
} }

View File

@ -2957,6 +2957,12 @@ table#policy_modules td * {
vertical-align: middle; vertical-align: middle;
margin-left: 5px; margin-left: 5px;
} }
.databox.data td>img, .databox.data td>div>a>img,
.databox.data td>span>img, .databox.data td>span>a>img,
.databox.data td>a>img{
vertical-align: middle;
margin-left: 5px;
}
.databox_color td{ .databox_color td{
padding-left: 10px; padding-left: 10px;

View File

@ -41,6 +41,8 @@ function printFormFilterAlert($id_group, $filter, $free_search, $url, $filter_st
$table->width = '100%'; $table->width = '100%';
$table->class = 'databox filters'; $table->class = 'databox filters';
$table->cellpadding = '0';
$table->cellspacing = '0';
if(defined('METACONSOLE')){ if(defined('METACONSOLE')){
$table->class = 'databox_filters'; $table->class = 'databox_filters';
$table->width = '96%'; $table->width = '96%';

View File

@ -377,7 +377,6 @@ if ($print_agent) {
ui_toggle(printFormFilterAlert($id_group, $filter, $free_search, $url, $filter_standby, $tag_filter, true, $strict_user),__('Show Options'));; ui_toggle(printFormFilterAlert($id_group, $filter, $free_search, $url, $filter_standby, $tag_filter, true, $strict_user),__('Show Options'));;
} }
else{ else{
echo '<br>';
ui_toggle(printFormFilterAlert($id_group, $filter, $free_search, $url, $filter_standby, $tag_filter, true, $strict_user),__('Alert control filter'), __('Toggle filter(s)')); ui_toggle(printFormFilterAlert($id_group, $filter, $free_search, $url, $filter_standby, $tag_filter, true, $strict_user),__('Alert control filter'), __('Toggle filter(s)'));
} }
} }
@ -418,9 +417,11 @@ if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
$table->head[7] = __('Last fired'); $table->head[7] = __('Last fired');
$table->head[8] = __('Status'); $table->head[8] = __('Status');
if (!defined('METACONSOLE')) { if (!defined('METACONSOLE')) {
$table->size[8] = '4%';
if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) { if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) {
$table->head[9] = __('Validate'); $table->head[9] = __('Validate');
$table->align[9] = 'center'; $table->align[9] = 'center';
$table->size[9] = '5%';
} }
} }
@ -456,9 +457,11 @@ if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
$table->head[6] = __('Last fired'); $table->head[6] = __('Last fired');
$table->head[7] = __('Status'); $table->head[7] = __('Status');
if (!defined('METACONSOLE')) { if (!defined('METACONSOLE')) {
$table->size[7] = '5%';
if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) { if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) {
$table->head[8] = __('Validate'); $table->head[8] = __('Validate');
$table->align[8] = 'center'; $table->align[8] = 'center';
$table->size[8] = '5%';
} }
} }
$table->align[7] = 'center'; $table->align[7] = 'center';
@ -487,9 +490,11 @@ else {
$table->head[6] = __('Last fired'); $table->head[6] = __('Last fired');
$table->head[7] = __('Status'); $table->head[7] = __('Status');
if (!defined('METACONSOLE')) { if (!defined('METACONSOLE')) {
$table->size[7] = '5%';
if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) { if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) {
$table->head[8] = __('Validate'); $table->head[8] = __('Validate');
$table->align[8] = 'center'; $table->align[8] = 'center';
$table->size[8] = '5%';
} }
} }
$table->align[7] = 'center'; $table->align[7] = 'center';
@ -518,9 +523,11 @@ else {
$table->head[5] = __('Last fired'); $table->head[5] = __('Last fired');
$table->head[6] = __('Status'); $table->head[6] = __('Status');
if (!defined('METACONSOLE')) { if (!defined('METACONSOLE')) {
$table->size[6] = '5%';
if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) { if (check_acl ($config["id_user"], $id_group, "LW") || check_acl ($config["id_user"], $id_group, "LM")) {
$table->head[7] = __('Validate'); $table->head[7] = __('Validate');
$table->align[7] = 'center'; $table->align[7] = 'center';
$table->size[7] = '5%';
} }
} }
$table->align[6] = 'center'; $table->align[6] = 'center';

View File

@ -90,11 +90,12 @@ foreach ($result_groups as $data) {
$monitor_critical += $data["_monitors_critical_"]; $monitor_critical += $data["_monitors_critical_"];
$monitor_unknown += $data["_monitors_unknown_"]; $monitor_unknown += $data["_monitors_unknown_"];
} }
$total = $monitor_ok + $monitor_warning + $monitor_critical; $total = $monitor_ok + $monitor_warning + $monitor_critical+$monitor_unknown;
$total_ok = format_numeric (($monitor_ok*100)/$total,0); $total_ok = format_numeric (($monitor_ok*100)/$total,0);
$total_warning = format_numeric (($monitor_warning*100)/$total,0); $total_warning = format_numeric (($monitor_warning*100)/$total,0);
$total_critical = format_numeric (($monitor_critical*100)/$total,0); $total_critical = format_numeric (($monitor_critical*100)/$total,0);
$total_unknown = format_numeric (($monitor_unknown*100)/$total,0); $total_unknown = format_numeric (($monitor_unknown*100)/$total,0);
echo '<table cellpadding="0" cellspacing="0" border="0" width="100%" class="databox">'; echo '<table cellpadding="0" cellspacing="0" border="0" width="100%" class="databox">';
echo "<tr>"; echo "<tr>";
echo "<th style='text-align: center;'>" . __("Summary of the status groups") . "</th>"; echo "<th style='text-align: center;'>" . __("Summary of the status groups") . "</th>";

View File

@ -453,14 +453,9 @@ $rows_select[0] = __('Not assigned');
$table->data[0][5] = html_print_select($rows_select, 'modulegroup', $modulegroup, '', __('All'),-1,true, false, true, '', false, 'width: 120px;'); $table->data[0][5] = html_print_select($rows_select, 'modulegroup', $modulegroup, '', __('All'),-1,true, false, true, '', false, 'width: 120px;');
$table->rowspan[0][6] = 2;
if(defined('METACONSOLE')){ $table->data[0][6] = html_print_submit_button (__('Show'), "uptbutton",
false, 'class="sub search" style="margin-top:0px;"',true);
$table->rowspan[0][6] = 2;
$table->data[0][6] = html_print_submit_button (__('Show'), "uptbutton",
false, 'class="sub search" style="margin-top:0px;"',true);
}
$table->data[1][0] = __('Module name'); $table->data[1][0] = __('Module name');
@ -496,11 +491,6 @@ else {
$tag_filter, '', __('All'), '', true, false, true, '', false, 'width: 150px;'); $tag_filter, '', __('All'), '', true, false, true, '', false, 'width: 150px;');
} }
if(!defined('METACONSOLE')){
$table->data[1][6] = html_print_submit_button (__('Show'), "uptbutton", false, 'class="sub search"',true);
}
$table_custom_fields = new stdClass(); $table_custom_fields = new stdClass();
$table_custom_fields->class = 'filters'; $table_custom_fields->class = 'filters';
$table_custom_fields->width = '100%'; $table_custom_fields->width = '100%';