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
1 2 3 4 5 | public function __construct( $root , ModuleHandlerInterface $module_handler , ThemeManagerInterface $theme_manager ) { $this ->root = $root ; $this ->moduleHandler = $module_handler ; $this ->themeManager = $theme_manager ; } |
Please login to continue.