<?php
include_once('global.php');

class MissingPage extends Page
{
  var $FullTitle = 'Stránka nenalezena';
  var $ShortTitle = 'Stránka nenalezena';

  function Show()
  {
    return('<h3 align="center"> Požadovanou stránku nelze zobrazit, protože na serveru neexistuje. </h3>');
  }
}

$System->AddModule(new MissingPage());
$System->Modules['MissingPage']->GetOutput();

?>