source: newtrunk/missing.php@ 389

Last change on this file since 389 was 148, checked in by george, 16 years ago
  • Upraveno: Přepracován systém generování zobrazení výstupu. Pro nový systím přepsáno mnoho stránek.
  • Property svn:executable set to *
File size: 401 bytes
Line 
1<?php
2include_once('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.