public function ModuleHandler::getName in Drupal 8
Same name and namespace in other branches
- 9 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 749
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function getName($module) {
try {
return \Drupal::service('extension.list.module')
->getName($module);
} catch (UnknownExtensionException $e) {
@trigger_error('Calling ModuleHandler::getName() with an unknown module is deprecated in Drupal 8.7.0 and support for this will be removed in Drupal 9.0.0, check that the module exists before calling this method. See https://www.drupal.org/node/3024541.', E_USER_DEPRECATED);
return $module;
}
}