function MaintenanceMode::getSiteMaintenanceMessage

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Site/MaintenanceMode.php \Drupal\Core\Site\MaintenanceMode::getSiteMaintenanceMessage()
  2. 10 core/lib/Drupal/Core/Site/MaintenanceMode.php \Drupal\Core\Site\MaintenanceMode::getSiteMaintenanceMessage()

Gets the site maintenance message.

Return value

\Drupal\Component\Render\MarkupInterface The formatted site maintenance message.

Overrides MaintenanceModeInterface::getSiteMaintenanceMessage

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'),
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.