added theme_selection

This commit is contained in:
ceb 2002-10-19 20:44:40 +00:00
parent 53ac5d3dd5
commit 4dcc52af4c

View File

@ -33,12 +33,18 @@
$GLOBALS['phpgw_info']['server']['template_dir'] = PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info']['login_template_set'];
if (!$GLOBALS['phpgw_info']['login_theme'])
{
$GLOBALS['phpgw_info']['login_theme'] = 'submarine';
}
$GLOBALS['phpgw']->xslttpl = CreateObject('phpgwapi.xslttemplates',$GLOBALS['phpgw_info']['server']['template_dir']);
$GLOBALS['phpgw']->xslttpl->add_file(array('login'));
$data = array
(
'login_theme' => 'phpgwapi/templates/' . $GLOBALS['phpgw_info']['login_template_set'] . '/css/submarine.css',
'phpgw_theme' => 'phpgwapi/templates/' . $GLOBALS['phpgw_info']['login_template_set'] . '/css/phpgw.css',
'login_theme' => 'phpgwapi/templates/' . $GLOBALS['phpgw_info']['login_template_set'] . '/css/' . $GLOBALS['phpgw_info']['login_theme'] . '.css',
'phpgw_head_charset' => lang('charset'),
'phpgw_head_website_title' => $GLOBALS['phpgw_info']['server']['site_title']
);