aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/yoga/theme/admin/themeconf.inc.php
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2008-09-14 15:24:05 +0000
committervdigital <vdigital@piwigo.org>2008-09-14 15:24:05 +0000
commit95d42962e2c54e8ae4ecbfe508bece6456fbb050 (patch)
tree6e500d2b0713ac26b3362fee900b50567e1fb063 /admin/template/yoga/theme/admin/themeconf.inc.php
parent2eda036c8b6522e3de8907033164737079679a78 (diff)
Admin old directories (admin/template/goto/admin and admin/template/yoga) are removed
Cursors review. git-svn-id: http://piwigo.org/svn/trunk@2533 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/yoga/theme/admin/themeconf.inc.php')
-rw-r--r--admin/template/yoga/theme/admin/themeconf.inc.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/admin/template/yoga/theme/admin/themeconf.inc.php b/admin/template/yoga/theme/admin/themeconf.inc.php
deleted file mode 100644
index 41e07b449..000000000
--- a/admin/template/yoga/theme/admin/themeconf.inc.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?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 'element_set':
- case 'cat_perm':
- case 'permalinks':
- case 'picture_modify':
- if (isset($_GET['cat']) and $_GET['cat']=='caddie') {
- return 3;
- }
- return 2;
- 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 'plugin':
- return 5;
- }
- }
- return 0;
-}
-
-$themeconf = array(
- 'template' => 'yoga',
- 'theme' => 'admin',
- 'icon_dir' => 'template/yoga/icon',
- 'admin_icon_dir' => 'template/yoga/icon/admin',
- 'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
- 'selected_admin_menu' => selected_admin_menu(),
- 'local_head' => '',
-);
-?>