blob: 27bfe7ec13ddad1cd749aeec64a1517e6b1d0e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* Accordion menus need to be stable
*/
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 'group_list':
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;
}
}
return 0;
}
$themeconf = array(
'template' => 'goto', /* Goto Admin template */
'theme' => 'roma', /* "roma" is the foundation theme of Piwigo */
'icon_dir' => 'template/yoga/icon',
'admin_icon_dir' => 'admin/template/goto/icon',
'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
'selected_admin_menu' => selected_admin_menu(),
'local_head' => '',
);
?>
|