function PermissionHandler::__construct

Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::__construct()
  2. 10 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::__construct()
  3. 11.x core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::__construct()

Constructs a new PermissionHandler.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation.

\Drupal\Core\Controller\ControllerResolverInterface $controller_resolver: The controller resolver.

File

core/modules/user/src/PermissionHandler.php, line 87

Class

PermissionHandler
Provides the available permissions based on yml files.

Namespace

Drupal\user

Code

public function __construct(ModuleHandlerInterface $module_handler, TranslationInterface $string_translation, ControllerResolverInterface $controller_resolver) {
    // @todo It would be nice if you could pull all module directories from the
    //   container.
    $this->moduleHandler = $module_handler;
    $this->stringTranslation = $string_translation;
    $this->controllerResolver = $controller_resolver;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.