diff options
Diffstat (limited to 'admin/themes/clear/themeconf.inc.php')
-rw-r--r-- | admin/themes/clear/themeconf.inc.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/themes/clear/themeconf.inc.php b/admin/themes/clear/themeconf.inc.php new file mode 100644 index 000000000..de1d34209 --- /dev/null +++ b/admin/themes/clear/themeconf.inc.php @@ -0,0 +1,12 @@ +<?php
+if (!function_exists('selected_admin_menu'))
+{
+ include_once(PHPWG_ROOT_PATH.'admin/include/functions_themes.inc.php');
+}
+$themeconf = array(
+ 'theme' => 'clear',
+ 'parent' => 'default',
+ 'admin_icon_dir' => 'admin/themes/clear/icon',
+ 'selected_admin_menu' => selected_admin_menu(),
+);
+?>
|