You are here

public function ModuleHandlerInterface::getModule in Drupal 8

Same name and namespace in other branches
  1. 9 core/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

\Drupal\Core\Extension\Exception\UnknownExtensionException Thrown when the requested module does not exist.

1 method overrides ModuleHandlerInterface::getModule()
ModuleHandler::getModule in core/lib/Drupal/Core/Extension/ModuleHandler.php
Returns a module extension object from the currently active modules list.

File

core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php, line 67

Class

ModuleHandlerInterface
Interface for classes that manage a set of enabled modules.

Namespace

Drupal\Core\Extension

Code

public function getModule($name);