mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
"including the eTemplate css file"
This commit is contained in:
parent
62bd5fa81f
commit
976c3dca34
@ -20,10 +20,15 @@ if($GLOBALS['egw_info']['user']['preferences']['calendar']['mainscreen_showevent
|
|||||||
|
|
||||||
if ($GLOBALS['egw_info']['user']['preferences']['calendar']['defaultcalendar'] == 'listview')
|
if ($GLOBALS['egw_info']['user']['preferences']['calendar']['defaultcalendar'] == 'listview')
|
||||||
{
|
{
|
||||||
|
if (!file_exists(EGW_SERVER_ROOT.($et_css_file ='/etemplate/templates/'.$GLOBALS['egw_info']['user']['preferences']['common']['template_set'].'/app.css')))
|
||||||
|
{
|
||||||
|
$et_css_file = '/etemplate/templates/default/app.css';
|
||||||
|
}
|
||||||
$content =& ExecMethod('calendar.uilist.home');
|
$content =& ExecMethod('calendar.uilist.home');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
unset($et_css_file);
|
||||||
$content =& ExecMethod('calendar.uiviews.home');
|
$content =& ExecMethod('calendar.uiviews.home');
|
||||||
}
|
}
|
||||||
$portalbox =& CreateObject('phpgwapi.listbox',array(
|
$portalbox =& CreateObject('phpgwapi.listbox',array(
|
||||||
@ -52,12 +57,19 @@ if($GLOBALS['egw_info']['user']['preferences']['calendar']['mainscreen_showevent
|
|||||||
echo '
|
echo '
|
||||||
<!-- BEGIN Calendar info -->
|
<!-- BEGIN Calendar info -->
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--';
|
||||||
|
if ($et_css_file) // listview
|
||||||
|
{
|
||||||
|
echo '
|
||||||
|
@import url('.$GLOBALS['egw_info']['server']['webserver_url'].$et_css_file.');';
|
||||||
|
}
|
||||||
|
echo '
|
||||||
@import url('.$GLOBALS['egw_info']['server']['webserver_url'].$css_file.');
|
@import url('.$GLOBALS['egw_info']['server']['webserver_url'].$css_file.');
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
'.$portalbox->draw($content)."\n".'<!-- END Calendar info -->'."\n";
|
'.$portalbox->draw($content)."\n".'<!-- END Calendar info -->'."\n";
|
||||||
|
|
||||||
|
unset($css_file); unset($et_css_file);
|
||||||
unset($key);
|
unset($key);
|
||||||
unset($app_id);
|
unset($app_id);
|
||||||
unset($content);
|
unset($content);
|
||||||
|
Loading…
Reference in New Issue
Block a user