LibraryDiscoveryParser::__construct

public LibraryDiscoveryParser::__construct($root, ModuleHandlerInterface $module_handler, ThemeManagerInterface $theme_manager)

Constructs a new LibraryDiscoveryParser instance.

Parameters

string $root: The app root.

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

\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.

File

core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php, line 51

Class

LibraryDiscoveryParser
Parses library files to get extension data.

Namespace

Drupal\Core\Asset

Code

public function __construct($root, ModuleHandlerInterface $module_handler, ThemeManagerInterface $theme_manager) {
  $this->root = $root;
  $this->moduleHandler = $module_handler;
  $this->themeManager = $theme_manager;
}
doc_Drupal
2016-10-29 09:23:12
Comments
Leave a Comment

Please login to continue.