source: trunk/missing.php@ 438

Last change on this file since 438 was 438, checked in by chronos, 12 years ago
  • Přesunuto: Soubory s třídamy přesunuty do podsložky Common. Aktualizovány odkazy mezi soubory.
  • Property svn:executable set to *
File size: 408 bytes
Line 
1<?php
2include_once('Common/Global.php');
3
4class MissingPage extends Page
5{
6 var $FullTitle = 'Stránka nenalezena';
7 var $ShortTitle = 'Stránka nenalezena';
8
9 function Show()
10 {
11 return('<h3 align="center"> Požadovanou stránku nelze zobrazit, protože na serveru neexistuje. </h3>');
12 }
13}
14
15$System->AddModule(new MissingPage());
16$System->Modules['MissingPage']->GetOutput();
17
18?>
Note: See TracBrowser for help on using the repository browser.