public function ModuleHandlerInterface::getModule in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Core/Extension/ModuleHandlerInterface.php \Drupal\Core\Extension\ModuleHandlerInterface::getModule()
Returns a module extension object from the currently active modules list.
Parameters
string $name: The name of the module to return.
Return value
\Drupal\Core\Extension\Extension An extension object.
Throws
\InvalidArgumentException Thrown when the requested module does not exist.
1 method overrides ModuleHandlerInterface::getModule()
- ModuleHandler::getModule in src/
Extension/ ModuleHandler.php - Returns a module extension object from the currently active modules list.
File
- lib/
Drupal/ Core/ Extension/ ModuleHandlerInterface.php, line 72 - Contains \Drupal\Core\Extension\ModuleHandlerInterface.
Class
- ModuleHandlerInterface
- Interface for classes that manage a set of enabled modules.
Namespace
Drupal\Core\ExtensionCode
public function getModule($name);