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

Breadcrumb

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

function ThemeHandler::hasUi

Overrides ThemeHandlerInterface::hasUi

File

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

Class

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

Namespace

Drupal\Core\Extension

Code

public function hasUi($name) {
    $themes = $this->listInfo();
    if (isset($themes[$name])) {
        if (!empty($themes[$name]->info['hidden'])) {
            $theme_config = $this->configFactory
                ->get('system.theme');
            return $name == $theme_config->get('default') || $name == $theme_config->get('admin');
        }
        return TRUE;
    }
    return FALSE;
}

API Navigation

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