<?php

class PageMissing extends Page
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->ParentClass = '';
    $this->Title = T('Page not found');
  }

  function Show(): string
  {
    Header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
    return '<h3 align="center">'.T('Required page not found').'</h3>';
  }
}