You are here

public function ModuleHandlerInterface::getName in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php \Drupal\Core\Extension\ModuleHandlerInterface::getName()

Gets the human readable name of a given module.

Parameters

string $module: The machine name of the module which title should be shown.

Return value

string Returns the human readable name of the module or the machine name passed in if no matching module is found.

1 method overrides ModuleHandlerInterface::getName()
ModuleHandler::getName in core/lib/Drupal/Core/Extension/ModuleHandler.php
Gets the human readable name of a given module.

File

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

Class

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

Namespace

Drupal\Core\Extension

Code

public function getName($module);