462b87485c
feature_948_accordion feature 948 : fix problem with incorrect submenu open in admin use a new variable (U_ACTIVE_MENU) and use default position defined in selected_admin_menu if not exists git-svn-id: http://piwigo.org/svn/branches/2.0@3217 68402e56-0260-453c-a942-63ccdbb3a9ee
58 lines
No EOL
1.3 KiB
PHP
58 lines
No EOL
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Accordion menus need to be stable (called by themeconf.inc which need it)
|
|
*/
|
|
function selected_admin_menu()
|
|
{
|
|
if (isset($_GET['page']))
|
|
{
|
|
switch ($_GET['page']) {
|
|
case 'configuration':
|
|
case 'extend_for_templates':
|
|
case 'menubar':
|
|
return 1;
|
|
case 'site_manager':
|
|
case 'site_update':
|
|
case 'cat_list':
|
|
case 'cat_modify':
|
|
case 'cat_move':
|
|
case 'cat_options':
|
|
case 'cat_perm':
|
|
case 'permalinks':
|
|
return 2;
|
|
case 'element_set':
|
|
if (isset($_GET['cat']) and is_numeric($_GET['cat']) ) {
|
|
return 2;
|
|
}
|
|
case 'picture_modify':
|
|
return 3;
|
|
case 'comments':
|
|
case 'upload':
|
|
case 'thumbnail':
|
|
case 'rating':
|
|
case 'tags':
|
|
return 3;
|
|
case 'user_list':
|
|
case 'user_perm':
|
|
case 'group_list':
|
|
case 'group_perm':
|
|
case 'notification_by_mail':
|
|
return 4;
|
|
case 'stats':
|
|
case 'history':
|
|
case 'maintenance':
|
|
case 'advanced_feature':
|
|
case 'plugins_list':
|
|
case 'plugins_update':
|
|
case 'plugins_new':
|
|
case 'plugin':
|
|
return 5;
|
|
}
|
|
}
|
|
if (isset($_GET['plgmenu'])) /* Later added plugins will add plgmenu in url */
|
|
{
|
|
return 5;
|
|
}
|
|
return 0;
|
|
}
|
|
?>
|