You are here

public function MaintenanceMode::getSiteMaintenanceMessage in Drupal 10

File

core/lib/Drupal/Core/Site/MaintenanceMode.php, line 70

Class

MaintenanceMode
Provides the default implementation of the maintenance mode service.

Namespace

Drupal\Core\Site

Code

public function getSiteMaintenanceMessage() {
  return new FormattableMarkup($this->config
    ->get('system.maintenance')
    ->get('message'), [
    '@site' => $this->config
      ->get('system.site')
      ->get('name'),
  ]);
}