function PermissionHandler::__construct
Same name in other branches
- 9 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::__construct()
- 10 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::__construct()
- 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 83
Class
- PermissionHandler
- Provides the available permissions based on yml files.
Namespace
Drupal\userCode
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.