You are here

function bartik_preprocess_maintenance_page in Drupal 10

Same name and namespace in other branches
  1. 8 core/themes/bartik/bartik.theme \bartik_preprocess_maintenance_page()
  2. 7 themes/bartik/template.php \bartik_preprocess_maintenance_page()
  3. 9 core/themes/bartik/bartik.theme \bartik_preprocess_maintenance_page()

Implements hook_preprocess_HOOK() for maintenance-page.html.twig.

File

core/themes/bartik/bartik.theme, line 66
Functions to support theming in the Bartik theme.

Code

function bartik_preprocess_maintenance_page(&$variables) {

  // By default, site_name is set to Drupal if no db connection is available
  // or during site installation. Setting site_name to an empty string makes
  // the site and update pages look cleaner.
  // @see template_preprocess_maintenance_page
  if (!$variables['db_is_active']) {
    $variables['site_name'] = '';
  }

  // Bartik has custom styling for the maintenance page.
  $variables['#attached']['library'][] = 'bartik/maintenance_page';
}