mirror of
https://gh.wpcy.net/https://github.com/fairpm/server.git
synced 2026-06-20 03:02:27 +08:00
15 lines
326 B
PHP
15 lines
326 B
PHP
<?php
|
|
|
|
namespace WordPressdotorg\GlotPress\Routes\Routes;
|
|
|
|
use GP_Route;
|
|
|
|
/**
|
|
* Maintenance Route Class.
|
|
*/
|
|
class Maintenance extends GP_Route {
|
|
|
|
public function show_maintenance_message() {
|
|
wp_die( 'Briefly unavailable for scheduled maintenance. Check back in ~30 minutes.', 'Maintenance', [ 'response' => 503 ] );
|
|
}
|
|
}
|