'.$Title.'

'.$Text.'
'; } function ShowPage($Content) { global $ReleaseTime, $Revision; $Output = 'System)->Config['Web']['Charset'].'"?>'."\n". ''. ''. ''. ''. ''. ''. ''.Core::Cast($this->System)->Config['Web']['Title'].''. ''. implode("\n", Core::Cast($this->System)->HeadItems). ''; $Output .= $this->ShowHeader(); $Output .= $Content; $Output .= '
Verze: '.$Revision.' ('.HumanDate($ReleaseTime).')'. '   Zdrojový kód   '. 'Historie změn
'; $Output .= ''; echo($Output); } function ShowHeader() { $Output = '
'; $Output .= '
'; return $Output; } function GetOutput($Page) { $Page->OnSystemMessage = array(Core::Cast($this->System)->BaseView, 'SystemMessage'); $Output = $this->ShowPage($Page->Show()); return $Output; } }