Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ThemeHandler.php

function ThemeHandler::addTheme

Overrides ThemeHandlerInterface::addTheme

1 call to ThemeHandler::addTheme()
ThemeHandler::listInfo in core/lib/Drupal/Core/Extension/ThemeHandler.php
Returns a list of currently installed themes.

File

core/lib/Drupal/Core/Extension/ThemeHandler.php, line 91

Class

ThemeHandler
Default theme handler using the config system to store installation statuses.

Namespace

Drupal\Core\Extension

Code

public function addTheme(Extension $theme) {
    // Register the namespaces of installed themes.
    // @todo Implement proper theme registration
    // https://www.drupal.org/project/drupal/issues/2941757
    \Drupal::service('class_loader')->addPsr4('Drupal\\' . $theme->getName() . '\\', $this->root . '/' . $theme->getPath() . '/src');
    if (!empty($theme->info['libraries'])) {
        foreach ($theme->info['libraries'] as $library => $name) {
            $theme->libraries[$library] = $name;
        }
    }
    if (isset($theme->info['engine'])) {
        $theme->engine = $theme->info['engine'];
    }
    if (isset($theme->info['base theme'])) {
        $theme->base_theme = $theme->info['base theme'];
    }
    $this->list[$theme->getName()] = $theme;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal