get('default'); } } catch (\Exception $e) { // Whatever went wrong (often a database connection problem), we are // about to fall back to a sensible theme so there is no need for special // handling. } if (!$custom_theme) { // We have been unable to identify the configured theme, so fall back to // a safe default. Bartik is reasonably user friendly and fairly generic. $custom_theme = 'bartik'; } } // Ensure that system.module is loaded. if (!function_exists('_system_rebuild_theme_data')) { $module_handler = \Drupal::moduleHandler(); $module_handler->addModule('system', 'core/modules/system'); $module_handler->load('system'); } $themes = list_themes(); // list_themes() triggers a \Drupal\Core\Extension\ModuleHandler::alter() in // maintenance mode, but we can't let themes alter the .info.yml data until // we know a theme's base themes. So don't set global $theme until after // list_themes() builds its cache. $theme = $custom_theme; // Store the identifier for retrieving theme settings with. $theme_key = $theme; // Find all our ancestor themes and put them in an array. $base_theme = array(); $ancestor = $theme; while ($ancestor && isset($themes[$ancestor]->base_theme)) { $base_theme[] = $new_base_theme = $themes[$themes[$ancestor]->base_theme]; $ancestor = $themes[$ancestor]->base_theme; } _drupal_theme_initialize($themes[$theme], array_reverse($base_theme)); // Prime the theme registry. // @todo Remove global theme variables. Drupal::service('theme.registry'); } /** * Returns HTML for a list of maintenance tasks to perform. * * @param $variables * An associative array containing: * - items: An associative array of maintenance tasks. * - active: The key for the currently active maintenance task. * * @ingroup themeable */ function theme_task_list($variables) { $items = $variables['items']; $active = $variables['active']; $done = isset($items[$active]) || $active == NULL; $output = '

Installation tasks

'; $output .= '
    '; foreach ($items as $k => $item) { if ($active == $k) { $class = 'active'; $status = '(' . t('active') . ')'; $done = FALSE; } else { $class = $done ? 'done' : ''; $status = $done ? '(' . t('done') . ')' : ''; } $output .= ''; $output .= $item; $output .= ($status ? ' ' . $status . '' : ''); $output .= ''; } $output .= '
'; return $output; } /** * Returns HTML for a results report of an operation run by authorize.php. * * @param $variables * An associative array containing: * - messages: An array of result messages. * * @ingroup themeable */ function theme_authorize_report($variables) { $messages = $variables['messages']; $output = ''; if (!empty($messages)) { $output .= '
'; foreach ($messages as $heading => $logs) { $items = array(); foreach ($logs as $number => $log_message) { if ($number === '#abort') { continue; } $authorize_message = array( '#theme' => 'authorize_message', '#message' => $log_message['message'], '#success' => $log_message['success'], ); $items[] = drupal_render($authorize_message); } $item_list = array( '#theme' => 'item_list', '#items' => $items, '#title' => $heading, ); $output .= drupal_render($item_list); } $output .= '
'; } return $output; } /** * Returns HTML for a single log message from the authorize.php batch operation. * * @param $variables * An associative array containing: * - message: The log message. * - success: A boolean indicating failure or success. * * @ingroup themeable */ function theme_authorize_message($variables) { $message = $variables['message']; $success = $variables['success']; if ($success) { $item = array('data' => $message, 'class' => array('success')); } else { $item = array('data' => '' . $message . '', 'class' => array('failure')); } return $item; }