mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-21 12:54:56 +02:00
2012-06-20 Vanessa Gil <vanessa.gil@artica.es>
* operation/tree.php: Fixed bug: Missing text in tree view title. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6628 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
412ddf8cdb
commit
989d80dc0b
@ -1,3 +1,7 @@
|
|||||||
|
2012-06-20 Vanessa Gil <vanessa.gil@artica.es>
|
||||||
|
|
||||||
|
* operation/tree.php: Fixed bug: Missing text in tree view title.
|
||||||
|
|
||||||
2012-06-20 Miguel de Dios <miguel.dedios@artica.es>
|
2012-06-20 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* include/functions_ui.php,
|
* include/functions_ui.php,
|
||||||
|
@ -983,8 +983,25 @@ $module_tab = array('text' => "<a href='index.php?extension_in_menu=estado&sec=e
|
|||||||
. html_print_image ("images/brick.png", true, array ("title" => __('Modules'))) . "</a>", 'active' => $activeTab == "module");
|
. html_print_image ("images/brick.png", true, array ("title" => __('Modules'))) . "</a>", 'active' => $activeTab == "module");
|
||||||
|
|
||||||
$onheader = array('os' => $os_tab, 'group' => $group_tab, 'module_group' => $module_group_tab, 'policies' => $policies_tab, 'module' => $module_tab);
|
$onheader = array('os' => $os_tab, 'group' => $group_tab, 'module_group' => $module_group_tab, 'policies' => $policies_tab, 'module' => $module_tab);
|
||||||
|
|
||||||
ui_print_page_header (__('Tree view')." - ".__('Sort the agents by'), "images/extensions.png", false, "", false, $onheader);
|
switch ($activeTab) {
|
||||||
|
case 'group':
|
||||||
|
$order = __('groups');
|
||||||
|
break;
|
||||||
|
case 'module_group':
|
||||||
|
$order = __('module groups');
|
||||||
|
break;
|
||||||
|
case 'policies':
|
||||||
|
$order = __('policies');
|
||||||
|
break;
|
||||||
|
case 'module':
|
||||||
|
$order = __('modules');
|
||||||
|
break;
|
||||||
|
case 'os':
|
||||||
|
$order = __('OS');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
ui_print_page_header (__('Tree view')." - ".__('Sort the agents by ') .$order, "images/extensions.png", false, "", false, $onheader);
|
||||||
|
|
||||||
|
|
||||||
echo "<br>";
|
echo "<br>";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user