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

Breadcrumb

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

function HelpTopicPluginManager::__construct

Constructs a new HelpTopicManager object.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\Extension\ThemeHandlerInterface $themeHandler: The theme handler.

\Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use.

string $root: The app root.

Overrides DefaultPluginManager::__construct

File

core/modules/help/src/HelpTopicPluginManager.php, line 98

Class

HelpTopicPluginManager
Provides the default help_topic manager.

Namespace

Drupal\help

Code

public function __construct(ModuleHandlerInterface $module_handler, ThemeHandlerInterface $themeHandler, CacheBackendInterface $cache_backend, string $root) {
    // Note that the parent construct is not called because this class does not use
    // annotated class discovery.
    $this->moduleHandler = $module_handler;
    $this->alterInfo('help_topics_info');
    $this->setCacheBackend($cache_backend, 'help_topics');
}
RSS feed
Powered by Drupal