You are here

public function ModuleHandler::getName in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::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.

Overrides ModuleHandlerInterface::getName

File

core/lib/Drupal/Core/Extension/ModuleHandler.php, line 711

Class

ModuleHandler
Class that manages modules in a Drupal installation.

Namespace

Drupal\Core\Extension

Code

public function getName($module) {
  return \Drupal::service('extension.list.module')
    ->getName($module);
}