public function BlockAccessControlHandler::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/block/src/BlockAccessControlHandler.php \Drupal\block\BlockAccessControlHandler::__construct()
Constructs the block access control handler instance
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Executable\ExecutableManagerInterface $manager: The ConditionManager for checking visibility of blocks.
\Drupal\Core\Plugin\Context\ContextHandlerInterface $context_handler: The ContextHandler for applying contexts to conditions properly.
\Drupal\Core\Plugin\Context\ContextRepositoryInterface $context_repository: The lazy context repository service.
Overrides EntityAccessControlHandler::__construct
File
- core/
modules/ block/ src/ BlockAccessControlHandler.php, line 80 - Contains \Drupal\block\BlockAccessControlHandler.
Class
- BlockAccessControlHandler
- Defines the access control handler for the block entity type.
Namespace
Drupal\blockCode
public function __construct(EntityTypeInterface $entity_type, ExecutableManagerInterface $manager, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository) {
parent::__construct($entity_type);
$this->manager = $manager;
$this->contextHandler = $context_handler;
$this->contextRepository = $context_repository;
}