streams/include/system_unavailable.php
2024-01-02 12:25:37 +11:00

20 lines
No EOL
380 B
PHP

<?php
require_once("include/network.php");
if (! function_exists('system_down')) {
function system_down(): void
{
http_status(503, 'Service Unavailable', false);
echo <<< EOT
<html lang="en">
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
EOT;
}
}