Load != '') $BodyParam .= ' onload="'.$this->Load.'"';
if($this->Unload != '') $BodyParam .= ' onunload="'.$this->Unload.'"';
$Output = 'Config['Web']['Charset'].'"?>'."\n".
''.
''.
'
'.
''.
''.
''.$this->Config['Web']['Title'].' - '.$Path.'
';
return($Output);
}
function ShowFooter()
{
global $ScriptTimeStart;
$Time = round($this->System->GetMicrotime() - $ScriptTimeStart, 2);
$Output = '';
return($Output);
}
function GetOutput($Content)
{
global $Config;
$Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Content;
$Output .= $this->ShowFooter();
$Html = new Html();
if($Config['Web']['FormatHTML'] == true) echo($Html->FormatOutput($Output));
else echo($Output);
}
function SystemMessage($Text)
{
return('Systémová zpráva'.$Text.' |
');
//ShowFooter();
//die();
}
function AccessDenied()
{
return($this->GetOutput($this->SystemMessage($this->System->Translate('AccessDenied'))));
}
}