2010-07-26 Dario Rodriguez <dario.rodriguez@integria.es>
* include/styles/pandora.css: Added css classes for separator. * include/functions_ui.php: Added suport to add a separator betwenn tabs in print_page_header. * operation/agentes/ver_agente.php: Fixed some problems with alt tag in images and added separator to tabs * godmode/agentes/configurar_agente.php: Fixed some problems with alt tag in images and added separator to tabs git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3059 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1b5f4456a6
commit
89466842f6
|
@ -1,3 +1,14 @@
|
||||||
|
2010-07-26 Dario Rodriguez <dario.rodriguez@integria.es>
|
||||||
|
|
||||||
|
* include/styles/pandora.css: Added css classes for separator.
|
||||||
|
* include/functions_ui.php: Added suport to add a separator betwenn tabs
|
||||||
|
in print_page_header.
|
||||||
|
* operation/agentes/ver_agente.php: Fixed some problems with alt tag in
|
||||||
|
images and added separator to tabs
|
||||||
|
* godmode/agentes/configurar_agente.php: Fixed some problems with alt tag
|
||||||
|
in images and added separator to tabs
|
||||||
|
|
||||||
|
|
||||||
2010-07-23 Raúl Mateos <raulofpandora@gmail.com>
|
2010-07-23 Raúl Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* godmode/alerts/alert_list.list.php: Added code to show title if page
|
* godmode/alerts/alert_list.list.php: Added code to show title if page
|
||||||
|
|
|
@ -265,7 +265,7 @@ if ($id_agente) {
|
||||||
/* Group tab */
|
/* Group tab */
|
||||||
|
|
||||||
$grouptab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/modificar_agente&ag_group='.$group.'">'
|
$grouptab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/modificar_agente&ag_group='.$group.'">'
|
||||||
. print_image ("images/agents_group.png", true, array( "title=" => __('Group')))
|
. print_image ("images/agents_group.png", true, array( "title" => __('Group')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
$grouptab['active'] = false;
|
$grouptab['active'] = false;
|
||||||
|
@ -285,7 +285,7 @@ if ($id_agente) {
|
||||||
$gistab['active'] = false;
|
$gistab['active'] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$onheader = array('view' => $viewtab, 'main' => $maintab, 'module' => $moduletab, 'alert' => $alerttab, 'template' => $templatetab, 'inventory' => $inventorytab, 'collection'=> $collectiontab, 'group' => $grouptab, 'gis' => $gistab);
|
$onheader = array('view' => $viewtab, 'separator' => "", 'main' => $maintab, 'module' => $moduletab, 'alert' => $alerttab, 'template' => $templatetab, 'inventory' => $inventorytab, 'collection'=> $collectiontab, 'group' => $grouptab, 'gis' => $gistab);
|
||||||
|
|
||||||
print_page_header (__('Agent configuration').' - '.mb_substr(get_agent_name ($id_agente), 0, 21), "images/setup.png", false, "", true, $onheader);
|
print_page_header (__('Agent configuration').' - '.mb_substr(get_agent_name ($id_agente), 0, 21), "images/setup.png", false, "", true, $onheader);
|
||||||
|
|
||||||
|
|
|
@ -1440,10 +1440,12 @@ function print_page_header ($title, $icon = "", $return = false, $help = "", $go
|
||||||
if ($godmode == true){
|
if ($godmode == true){
|
||||||
$type = "nomn";
|
$type = "nomn";
|
||||||
$type2 = "menu_tab_frame";
|
$type2 = "menu_tab_frame";
|
||||||
|
$separator_class = "separator";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$type = "view";
|
$type = "view";
|
||||||
$type2 = "menu_tab_frame_view";
|
$type2 = "menu_tab_frame_view";
|
||||||
|
$separator_class = "separator_view";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1458,7 +1460,11 @@ function print_page_header ($title, $icon = "", $return = false, $help = "", $go
|
||||||
|
|
||||||
if (is_array($options)) {
|
if (is_array($options)) {
|
||||||
$buffer .= '<div id="menu_tab"><ul class="mn">';
|
$buffer .= '<div id="menu_tab"><ul class="mn">';
|
||||||
foreach ($options as $option) {
|
foreach ($options as $key => $option) {
|
||||||
|
if ($key == 'separator') {
|
||||||
|
$buffer .= '<li class='.$separator_class.'>';
|
||||||
|
$buffer .= '</li>';
|
||||||
|
} else {
|
||||||
if (is_array($option)) {
|
if (is_array($option)) {
|
||||||
$class = 'nomn';
|
$class = 'nomn';
|
||||||
if ($option['active']) {
|
if ($option['active']) {
|
||||||
|
@ -1468,13 +1474,13 @@ function print_page_header ($title, $icon = "", $return = false, $help = "", $go
|
||||||
$buffer .= '<li class="' . $class . '">';
|
$buffer .= '<li class="' . $class . '">';
|
||||||
$buffer .= $option['text'];
|
$buffer .= $option['text'];
|
||||||
$buffer .= '</li>';
|
$buffer .= '</li>';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$buffer .= '<li class="nomn">';
|
$buffer .= '<li class="nomn">';
|
||||||
$buffer .= $option;
|
$buffer .= $option;
|
||||||
$buffer .= '</li>';
|
$buffer .= '</li>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
$buffer .= '</ul></div>';
|
$buffer .= '</ul></div>';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -531,6 +531,18 @@ div.title_line {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#menu_tab li.separator_view {
|
||||||
|
background: #66AA44;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu_tab li.separator {
|
||||||
|
background: #ce5c00;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#menu_tab li.nomn_high a {
|
#menu_tab li.nomn_high a {
|
||||||
background: #799E48;
|
background: #799E48;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
|
@ -30,8 +30,6 @@ if (is_ajax ()) {
|
||||||
$get_agent_json = (bool) get_parameter ('get_agent_json');
|
$get_agent_json = (bool) get_parameter ('get_agent_json');
|
||||||
$get_agent_modules_json = (bool) get_parameter ('get_agent_modules_json');
|
$get_agent_modules_json = (bool) get_parameter ('get_agent_modules_json');
|
||||||
$get_agent_status_tooltip = (bool) get_parameter ("get_agent_status_tooltip");
|
$get_agent_status_tooltip = (bool) get_parameter ("get_agent_status_tooltip");
|
||||||
$get_agentmodule_status_tooltip = (bool) get_parameter ("get_agentmodule_status_tooltip");
|
|
||||||
$get_group_status_tooltip = (bool) get_parameter ("get_group_status_tooltip");
|
|
||||||
$get_agents_group_json = (bool) get_parameter ("get_agents_group_json");
|
$get_agents_group_json = (bool) get_parameter ("get_agents_group_json");
|
||||||
$get_agent_modules_json_for_multiple_agents = (bool) get_parameter("get_agent_modules_json_for_multiple_agents");
|
$get_agent_modules_json_for_multiple_agents = (bool) get_parameter("get_agent_modules_json_for_multiple_agents");
|
||||||
$get_agent_modules_json_for_multiple_agents_id = (bool) get_parameter("get_agent_modules_json_for_multiple_agents_id");
|
$get_agent_modules_json_for_multiple_agents_id = (bool) get_parameter("get_agent_modules_json_for_multiple_agents_id");
|
||||||
|
@ -120,9 +118,7 @@ if (is_ajax ()) {
|
||||||
if ($get_agent_status_tooltip) {
|
if ($get_agent_status_tooltip) {
|
||||||
$id_agent = (int) get_parameter ('id_agent');
|
$id_agent = (int) get_parameter ('id_agent');
|
||||||
$agent = get_db_row ('tagente', 'id_agente', $id_agent);
|
$agent = get_db_row ('tagente', 'id_agente', $id_agent);
|
||||||
echo '<h3>';
|
echo '<h3>'.$agent['nombre'].'</h3>';
|
||||||
echo '<img src="images/bricks.png" /> ';
|
|
||||||
echo printTruncateText($agent['nombre'],25,false,true,false).'</h3>';
|
|
||||||
echo '<strong>'.__('Main IP').':</strong> '.$agent['direccion'].'<br />';
|
echo '<strong>'.__('Main IP').':</strong> '.$agent['direccion'].'<br />';
|
||||||
echo '<strong>'.__('Group').':</strong> ';
|
echo '<strong>'.__('Group').':</strong> ';
|
||||||
echo '<img src="images/groups_small/'.get_group_icon ($agent['id_grupo']).'.png" /> ';
|
echo '<img src="images/groups_small/'.get_group_icon ($agent['id_grupo']).'.png" /> ';
|
||||||
|
@ -206,60 +202,6 @@ if (is_ajax ()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($get_agentmodule_status_tooltip) {
|
|
||||||
$id_module = (int) get_parameter ('id_module');
|
|
||||||
$module = get_db_row ('tagente_modulo', 'id_agente_modulo', $id_module);
|
|
||||||
echo '<h3>';
|
|
||||||
echo '<img src="images/brick.png" /> ';
|
|
||||||
echo printTruncateText($module['nombre'],25,false,true,false).'</h3>';
|
|
||||||
echo '<strong>'.__('Type').':</strong> ';
|
|
||||||
$agentmoduletype = get_agentmodule_type ($module['id_agente_modulo']);
|
|
||||||
echo get_moduletype_name ($agentmoduletype).' ';
|
|
||||||
echo '<img src="images/'.get_module_type_icon ($agentmoduletype).'" /> <br />';
|
|
||||||
echo '<strong>'.__('Module group').':</strong> ';
|
|
||||||
$modulegroup = get_modulegroup_name (get_agentmodule_modulegroup ($module['id_agente_modulo']));
|
|
||||||
if($modulegroup === false){
|
|
||||||
echo __('None').'<br />';
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
echo $modulegroup.'<br />';
|
|
||||||
}
|
|
||||||
echo '<strong>'.__('Agent').':</strong> ';
|
|
||||||
echo printTruncateText(get_agentmodule_agent_name ($module['id_agente_modulo']),25,false,true,false).'<br />';
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($get_group_status_tooltip) {
|
|
||||||
$id_group = (int) get_parameter ('id_group');
|
|
||||||
$group = get_db_row ('tgrupo', 'id_grupo', $id_group);
|
|
||||||
echo '<h3><img src="images/groups_small/'.get_group_icon ($group['id_grupo']).'.png" /> ';
|
|
||||||
echo printTruncateText($group['nombre'],25,false,true,false).'</h3>';
|
|
||||||
echo '<strong>'.__('Parent').':</strong> ';
|
|
||||||
if($group['parent'] == 0) {
|
|
||||||
echo __('None').'<br />';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$group_parent = get_db_row ('tgrupo', 'id_grupo', $group['parent']);
|
|
||||||
echo '<img src="images/groups_small/'.get_group_icon ($group['parent']).'.png" /> ';
|
|
||||||
echo $group_parent['nombre'].'<br />';
|
|
||||||
}
|
|
||||||
echo '<strong>'.__('Sons').':</strong> ';
|
|
||||||
$groups_sons = get_db_all_fields_in_table ('tgrupo', 'parent', $group['id_grupo']);
|
|
||||||
if($groups_sons === false){
|
|
||||||
echo __('None').'<br />';
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
echo '<br /><br />';
|
|
||||||
foreach($groups_sons as $group_son) {
|
|
||||||
echo '<img src="images/groups_small/'.get_group_icon ($group_son['id_grupo']).'.png" /> ';
|
|
||||||
echo $group_son['nombre'].'<br />';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -309,7 +251,7 @@ $managetab = "";
|
||||||
|
|
||||||
if (give_acl ($config['id_user'],$id_grupo, "AW")) {
|
if (give_acl ($config['id_user'],$id_grupo, "AW")) {
|
||||||
$managetab['text'] ='<a href="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'">'
|
$managetab['text'] ='<a href="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'">'
|
||||||
. print_image("images/setup.png", true, array("title=" => __('Manage')))
|
. print_image("images/setup.png", true, array ("title" => __('Manage')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
if ($tab == 'manage')
|
if ($tab == 'manage')
|
||||||
|
@ -320,7 +262,7 @@ if (give_acl ($config['id_user'],$id_grupo, "AW")) {
|
||||||
|
|
||||||
/* Main tab */
|
/* Main tab */
|
||||||
$maintab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'">'
|
$maintab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'">'
|
||||||
. print_image("images/monitor.png", true, array("title=" => __('Main')))
|
. print_image("images/monitor.png", true, array("title" => __('Main')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
if ($tab == 'main')
|
if ($tab == 'main')
|
||||||
|
@ -330,7 +272,7 @@ else
|
||||||
|
|
||||||
/* Data */
|
/* Data */
|
||||||
$datatab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'&tab=data">'
|
$datatab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'&tab=data">'
|
||||||
. print_image("images/lightbulb.png", true, array("title=" => __('Data')))
|
. print_image("images/lightbulb.png", true, array("title" => __('Data')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
if (($tab == 'data') OR ($tab == 'data_view'))
|
if (($tab == 'data') OR ($tab == 'data_view'))
|
||||||
|
@ -340,7 +282,7 @@ else
|
||||||
|
|
||||||
/* Alert tab */
|
/* Alert tab */
|
||||||
$alerttab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'&tab=alert">'
|
$alerttab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$id_agente.'&tab=alert">'
|
||||||
. print_image("images/bell.png", true, array("title=" => __('Alerts')))
|
. print_image("images/bell.png", true, array("title" => __('Alerts')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
if ($tab == 'alert')
|
if ($tab == 'alert')
|
||||||
|
@ -350,7 +292,7 @@ else
|
||||||
|
|
||||||
/* SLA view */
|
/* SLA view */
|
||||||
$slatab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=sla&id_agente='.$id_agente.'">'
|
$slatab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=sla&id_agente='.$id_agente.'">'
|
||||||
. print_image("images/images.png", true, array("title=" => __('S.L.A.')))
|
. print_image("images/images.png", true, array("title" => __('S.L.A.')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
if ($tab == 'sla') {
|
if ($tab == 'sla') {
|
||||||
|
@ -374,7 +316,7 @@ if ($collectiontab == -1)
|
||||||
/* Group tab */
|
/* Group tab */
|
||||||
|
|
||||||
$grouptab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/estado_agente&group_id='.$id_grupo.'">'
|
$grouptab['text']= '<a href="index.php?sec=estado&sec2=operation/agentes/estado_agente&group_id='.$id_grupo.'">'
|
||||||
. print_image("images/agents_group.png", true, array( "title=" => __('Group')))
|
. print_image("images/agents_group.png", true, array( "title" => __('Group')))
|
||||||
. '</a>';
|
. '</a>';
|
||||||
|
|
||||||
$grouptab['active']=false;
|
$grouptab['active']=false;
|
||||||
|
@ -384,7 +326,7 @@ $gistab="";
|
||||||
if ($config['activate_gis']) {
|
if ($config['activate_gis']) {
|
||||||
|
|
||||||
$gistab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=gis&id_agente='.$id_agente.'">'
|
$gistab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=gis&id_agente='.$id_agente.'">'
|
||||||
.print_image("images/world.png", true, array( "title=" => __('GIS data')))
|
.print_image("images/world.png", true, array( "title" => __('GIS data')))
|
||||||
.'</a>';
|
.'</a>';
|
||||||
|
|
||||||
if ($tab == 'gis')
|
if ($tab == 'gis')
|
||||||
|
@ -393,7 +335,7 @@ if ($config['activate_gis']) {
|
||||||
$gistab['active'] = false;
|
$gistab['active'] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$onheader = array('manage' => $managetab, 'main' => $maintab, 'data' => $datatab, 'alert' => $alerttab, 'sla' => $slatab, 'inventory' => $inventorytab, 'collection' => $collectiontab, 'group' => $grouptab, 'gis' => $gistab);
|
$onheader = array('manage' => $managetab, 'separator' => "", 'main' => $maintab, 'data' => $datatab, 'alert' => $alerttab, 'sla' => $slatab, 'inventory' => $inventorytab, 'collection' => $collectiontab, 'group' => $grouptab, 'gis' => $gistab);
|
||||||
|
|
||||||
print_page_header (__('Agent').' - '.mb_substr(get_agent_name($id_agente),0,25), $icon, false, "", false, $onheader);
|
print_page_header (__('Agent').' - '.mb_substr(get_agent_name($id_agente),0,25), $icon, false, "", false, $onheader);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue