2014-04-02 Vanessa Gil <vanessa.gil@artica.es>

* godmode/menu.php
	  godmode/agentes/planned_downtime.editor.php
	  operation/menu.php: Changed 'Scheduled downtime'
	from Administration to Operation.
	Added help in scheduled downtime form.
	Changed 'Update manager' from Operation->Extensions
	to Administration->Setup.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9701 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2014-04-02 11:11:06 +00:00
parent 72168e99f9
commit a4dd11d017
4 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,13 @@
2014-04-02 Vanessa Gil <vanessa.gil@artica.es>
* godmode/menu.php
godmode/agentes/planned_downtime.editor.php
operation/menu.php: Changed 'Scheduled downtime'
from Administration to Operation.
Added help in scheduled downtime form.
Changed 'Update manager' from Operation->Extensions
to Administration->Setup.
2014-04-02 Miguel de Dios <miguel.dedios@artica.es>
* godmode/modules/manage_network_components.php,

View File

@ -313,7 +313,9 @@ $table->data[1][1] = html_print_select_groups(false, "AW", true, 'id_group', $id
$table->data[2][0] = __('Description');
$table->data[2][1] = html_print_textarea ('description', 3, 35, $description, '', true);
$table->data[3][0] = __('Type');
$table->data[3][0] = __('Type').ui_print_help_tip(__("Quiet: Disable modules that we indicate below.").'<br>'.
__("Disable Agents: Disables the selected agents.").'<br>'.
__("Disable Alerts: Disable alerts for the selected agents."), true);
$table->data[3][1] = html_print_select(array('quiet' => __('Quiet'),
'disable_agents' => __('Disabled Agents'),
'disable_agents_alerts' => __('Disabled only Alerts')),

View File

@ -38,7 +38,9 @@ if (check_acl ($config['id_user'], 0, "AW") || check_acl ($config['id_user'], 0,
enterprise_hook("duplicate_confi_submenu");
$sub["godmode/groups/group_list"]["text"] = __('Manage groups');
/*
$sub["godmode/agentes/planned_downtime.list"]["text"] = __('Scheduled downtime');
*/
if (check_acl ($config["id_user"], 0, "PM")) {
$sub["godmode/agentes/fields_manager"]["text"] = __('Manage custom fields');
@ -218,6 +220,8 @@ if (check_acl ($config['id_user'], 0, "PM")) {
enterprise_hook ('skins_submenu');
$sub["extras/pandora_diag"]["text"] = __('Diagnostic info');
$sub["extensions/update_manager"]["text"] = __('Update manager');
$menu_godmode["gsetup"]["sub"] = $sub;
}

View File

@ -65,6 +65,8 @@ if (check_acl ($config['id_user'], 0, "AR")) {
enterprise_hook ('log_collector_menu');
}
$sub["godmode/agentes/planned_downtime.list"]["text"] = __('Scheduled downtime');
$menu_operation["estado"]["sub"] = $sub;
//End of view agents
@ -366,6 +368,9 @@ if (check_acl ($config['id_user'], 0, "AR")) {
//Check if was displayed inside other menu
if ($extension["operation_menu"]["fatherId"] == '') {
if ($extension_menu['name'] == 'Update manager') {
continue;
}
$sub[$extension_menu["sec2"]]["text"] = $extension_menu["name"];
$sub[$extension_menu["sec2"]]["refr"] = 0;
}