This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
accm-website/pages/ErrorPage.inc.php
2010-08-14 22:32:09 +02:00

28 lines
505 B
PHP

<?php
include_once './pages/PageInterface.inc.php';
/**
* This class represents the 404 error page.
*
* @author Thomas Schwery <thomas.schwery@epfl.ch>
*/
class ErrorPage implements PageInterface {
public function __construct() {
;
}
public function getContent() {
return Localization::errorMessage;
}
public function getTitle() {
return Localization::errorTitle;
}
public static function getStaticTitle() {
return "";
}
}
?>