mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-01 20:04:51 +02:00
14778ce673
manages template/theme in a simpler "theme only level" architecture. It supports multiple level inheritance. git-svn-id: http://piwigo.org/svn/trunk@5123 68402e56-0260-453c-a942-63ccdbb3a9ee
13 lines
319 B
PHP
13 lines
319 B
PHP
<?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(),
|
|
);
|
|
?>
|