You are here

protected function PermissionHandler::getModuleNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::getModuleNames()

Returns all module names.

Return value

string[] Returns the human readable names of all modules keyed by machine name.

1 call to PermissionHandler::getModuleNames()
PermissionHandler::sortPermissions in core/modules/user/src/PermissionHandler.php
Sorts the given permissions by provider name and title.

File

core/modules/user/src/PermissionHandler.php, line 228
Contains \Drupal\user\PermissionHandler.

Class

PermissionHandler
Provides the available permissions based on yml files.

Namespace

Drupal\user

Code

protected function getModuleNames() {
  $modules = array();
  foreach (array_keys($this->moduleHandler
    ->getModuleList()) as $module) {
    $modules[$module] = $this->moduleHandler
      ->getName($module);
  }
  asort($modules);
  return $modules;
}