On this page
function template_preprocess_maintenance_page
template_preprocess_maintenance_page(&$variables)
Prepares variables for maintenance page templates.
Default template: maintenance-page.html.twig.
Parameters
array $variables: An associative array containing:
- content - An array of page content.
See also
File
- core/includes/theme.inc, line 1456
- The theme system, which controls the output of Drupal.
Code
function template_preprocess_maintenance_page(&$variables) {
// @todo Rename the templates to page--maintenance + page--install.
template_preprocess_page($variables);
// @see system_page_attachments()
$variables['#attached']['library'][] = 'system/maintenance';
// Maintenance page and install page need branding info in variables because
// there is no blocks.
$site_config = \Drupal::config('system.site');
$variables['logo'] = theme_get_setting('logo.url');
$variables['site_name'] = $site_config->get('name');
$variables['site_slogan'] = $site_config->get('slogan');
// Maintenance page and install page need page title in variable because there
// are no blocks.
$variables['title'] = $variables['page']['#title'];
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!theme.inc/function/template_preprocess_maintenance_page/8.1.x