123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- use Drupal\Component\Utility\Unicode;
- use Drupal\Core\Site\Settings;
- function _drupal_maintenance_theme() {
-
- if (\Drupal::theme()->hasActiveTheme()) {
- return;
- }
- require_once __DIR__ . '/theme.inc';
- require_once __DIR__ . '/common.inc';
- require_once __DIR__ . '/unicode.inc';
- require_once __DIR__ . '/file.inc';
- require_once __DIR__ . '/module.inc';
- require_once __DIR__ . '/database.inc';
- Unicode::check();
-
- if (defined('MAINTENANCE_MODE') && (MAINTENANCE_MODE == 'install' || MAINTENANCE_MODE == 'update')) {
- if (drupal_installation_attempted()) {
- $custom_theme = $GLOBALS['install_state']['theme'];
- }
- else {
- $custom_theme = Settings::get('maintenance_theme', 'seven');
- }
- }
- else {
-
-
- try {
- $custom_theme = Settings::get('maintenance_theme', '');
- if (!$custom_theme) {
- $config = \Drupal::config('system.theme');
- $custom_theme = $config->get('default');
- }
- }
- catch (\Exception $e) {
-
-
-
- }
- if (!$custom_theme) {
-
-
- $custom_theme = 'bartik';
- }
- }
- $themes = \Drupal::service('theme_handler')->listInfo();
-
-
-
- $theme_init = \Drupal::service('theme.initialization');
- $theme_handler = \Drupal::service('theme_handler');
- if (empty($themes) || !isset($themes[$custom_theme])) {
- $themes = $theme_handler->rebuildThemeData();
- $theme_handler->addTheme($themes[$custom_theme]);
- }
-
-
-
-
-
- $theme = $custom_theme;
-
-
-
-
-
- $base_themes = [];
- $ancestor = $theme;
- while ($ancestor && isset($themes[$ancestor]->base_theme)) {
- $base_themes[] = $themes[$themes[$ancestor]->base_theme];
- $ancestor = $themes[$ancestor]->base_theme;
- if ($ancestor) {
-
- $theme_handler->addTheme($themes[$ancestor]);
- }
- }
- \Drupal::theme()->setActiveTheme($theme_init->getActiveTheme($themes[$custom_theme], $base_themes));
-
- Drupal::service('theme.registry');
- }
- function template_preprocess_authorize_report(&$variables) {
- $messages = [];
- if (!empty($variables['messages'])) {
- foreach ($variables['messages'] as $heading => $logs) {
- $items = [];
- foreach ($logs as $number => $log_message) {
- if ($number === '#abort') {
- continue;
- }
- $class = 'authorize-results__' . ($log_message['success'] ? 'success' : 'failure');
- $items[] = [
- '#wrapper_attributes' => ['class' => [$class]],
- '#markup' => $log_message['message'],
- ];
- }
- $messages[] = [
- '#theme' => 'item_list',
- '#items' => $items,
- '#title' => $heading,
- ];
- }
- }
- $variables['messages'] = $messages;
- }
|