protected ModuleHandler::add($type, $name, $path)
Adds a module or profile to the list of currently active modules.
Parameters
string $type: The extension type; either 'module' or 'profile'.
string $name: The module name; e.g., 'node'.
string $path: The module path; e.g., 'core/modules/node'.
File
- core/lib/Drupal/Core/Extension/ModuleHandler.php, line 212
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\Extension
Code
1 2 3 4 5 6 | protected function add( $type , $name , $path ) { $pathname = "$path/$name.info.yml" ; $filename = file_exists ( $this ->root . "/$path/$name.$type" ) ? "$name.$type" : NULL; $this ->moduleList[ $name ] = new Extension( $this ->root, $type , $pathname , $filename ); $this ->resetImplementations(); } |
Please login to continue.