| 1 | <?php |
||
| 7 | abstract class Status { |
||
| 8 | |||
| 9 | # Display status screen |
||
| 10 | |||
| 11 | private static function display(string $view, string $title, string $code) { |
||
| 27 | |||
| 28 | # Display 404 error |
||
| 29 | |||
| 30 | public static function error404() { |
||
| 34 | |||
| 35 | # Display maintenance screen |
||
| 36 | |||
| 37 | public static function maintenance() { |
||
| 41 | |||
| 42 | # Display update screen |
||
| 43 | |||
| 44 | public static function update() { |
||
| 48 | } |
||
| 49 | } |
||
| 50 |