feature 1515: the new admin menu organization implies to tell the accordion

menu which section to open on page load.

I've moved the single function in functions_themes.inc.php to function.php to
avoid misunderstanding with theme manager.

Ability to preset the active menu (in the future, a plugin may add its admin
page anywhere in the menu, this features needs other change to be possible)

git-svn-id: http://piwigo.org/svn/trunk@5173 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2010-03-17 23:50:53 +00:00
commit cd00dffa72
6 changed files with 79 additions and 69 deletions

View file

@ -1905,4 +1905,80 @@ function get_newsletter_subscribe_base_url($language) {
return 'http://'.$subscribe_domain.'/announcement/subscribe/';
}
/**
* Accordion menus need to know which section to open by default when
* loading the page
*/
function get_active_menu($menu_page)
{
global $page;
if (isset($page['active_menu']))
{
return $page['active_menu'];
}
// specific cases
if ('element_set' == $menu_page)
{
if (isset($_GET['cat']) and is_numeric($_GET['cat']))
{
return 1;
}
else
{
return 0;
}
}
switch ($menu_page)
{
case 'photos_add':
case 'upload':
case 'comments': // really needs to be moved somewhere else
case 'rating':
case 'tags':
case 'picture_modify':
return 0;
case 'site_manager':
case 'site_update':
case 'cat_list':
case 'cat_modify':
case 'cat_move':
case 'cat_options':
case 'cat_perm':
case 'permalinks':
return 1;
case 'user_list':
case 'user_perm':
case 'group_list':
case 'group_perm':
case 'notification_by_mail':
return 2;
case 'plugins_list':
case 'plugins_update':
case 'plugins_new':
case 'plugin':
return 3;
case 'stats':
case 'history':
case 'maintenance':
case 'advanced_feature':
case 'thumbnail':
return 4;
case 'configuration':
case 'extend_for_templates':
case 'menubar':
case 'themes_new':
case 'themes_installed':
return 5;
}
return 0;
}
?>