2010-07-23 Raul Mateos <raulofpandora@gmail.com>
* godmode/alerts/alert_list.list.php: Added code to show title if page called from Manage Agents. * godmode/modules/manage_network_components.php: Change title. * godmode/gis_maps/configure_gis_map.php: Change fixed text to variable. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3058 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9b6279d495
commit
1b5f4456a6
|
@ -1,3 +1,12 @@
|
|||
2010-07-23 Raúl Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* godmode/alerts/alert_list.list.php: Added code to show title if page
|
||||
called from Manage Agents.
|
||||
|
||||
* godmode/modules/manage_network_components.php: Change title.
|
||||
|
||||
* godmode/gis_maps/configure_gis_map.php: Change fixed text to variable.
|
||||
|
||||
2010-07-23 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions_networkmap.php
|
||||
|
@ -5,20 +14,20 @@
|
|||
operation/agentes/networkmap.topology.php
|
||||
operation/agentes/networkmap.groups.php
|
||||
operation/agentes/ver_agente.php
|
||||
operation/agentes/networkmap.php: Rewritted the get status of modules
|
||||
and agents and writted the same feature for groups and policys. Added
|
||||
operation/agentes/networkmap.php: Rewritten the get status of modules
|
||||
and agents and written the same feature for groups and policies. Added
|
||||
the groups view network map. All for pending task: 3019636
|
||||
|
||||
2010-07-23 Dario Rodriguez <dario.rodriguez@gmail.com>
|
||||
|
||||
* operation/agentes/ver_agente.php: Changed code to use print_page_header
|
||||
to print de tabs
|
||||
to print the tabs
|
||||
* godmode/agentes/configurar_agente.php: Changed code to use print_page_header
|
||||
to print de tabs
|
||||
to print the tabs
|
||||
|
||||
2010-07-23 Raúl Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* godmode/alerts/aler_list*.php: Cleaned code. Removed old title style.
|
||||
* godmode/alerts/alert_list*.php: Cleaned code. Removed old title style.
|
||||
|
||||
* godmode/agentes/massive_operations.php: Updated year.
|
||||
|
||||
|
|
|
@ -34,6 +34,10 @@ if (! give_acl ($config['id_user'], 0, "LW")) {
|
|||
exit;
|
||||
}
|
||||
|
||||
if (isset($_GET["tab"])) {
|
||||
echo "<h2>".__('Alerts')."</h2>";
|
||||
}
|
||||
|
||||
echo '<a href="#" id="tgl_alert_control"><b>'.__('Alert control filter').'</b> '.print_image ("images/down.png", true, array ("title" => __('Toggle filter(s)'))).'</a><br><br>';
|
||||
|
||||
//INI DIV OF FORM FILTER
|
||||
|
|
|
@ -367,7 +367,7 @@ $table->data = array ();
|
|||
$table->valign[0] = 'top';
|
||||
$table->valign[1] = 'top';
|
||||
|
||||
$table->data[0][0] = "<h4>List of layers</h4>". print_help_tip (__('It is possible to edit, delete and reorder the layers.'), true);
|
||||
$table->data[0][0] = "<h4>" .__('List of layers') . print_help_tip (__('It is possible to edit, delete and reorder the layers.'), true) . "</h4>";
|
||||
$table->data[0][1] = '<div style="text-align: right;">' . print_button(__('New layer'), 'new_layer', false, 'newLayer();', 'class="sub add"', true) . '</div>';
|
||||
|
||||
$table->data[1][0] = '<table class="databox" border="0" cellpadding="4" cellspacing="4" id="list_layers">' .
|
||||
|
|
|
@ -26,7 +26,7 @@ if (! give_acl ($config['id_user'], 0, "PM")) {
|
|||
}
|
||||
|
||||
// Header
|
||||
print_page_header (__('Module management').' » '.__('Module component management'), "", false, "", true);
|
||||
print_page_header (__('Module management').' » '.__('Network component management'), "", false, "", true);
|
||||
|
||||
require_once ('include/functions_network_components.php');
|
||||
|
||||
|
|
Loading…
Reference in New Issue