blob: de1d342098a85cc32052d27df9342f00cba77a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
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(),
);
?>
|