You are here

public function ModuleHandlerInterface::getModule in Zircon Profile 8

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

\InvalidArgumentException 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 72
Contains \Drupal\Core\Extension\ModuleHandlerInterface.

Class

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

Namespace

Drupal\Core\Extension

Code

public function getModule($name);