Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BlockAccessControlHandler.php

function BlockAccessControlHandler::__construct

Constructs the block access control handler instance.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\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 65

Class

BlockAccessControlHandler
Defines the access control handler for the content block entity type.

Namespace

Drupal\block

Code

public function __construct(EntityTypeInterface $entity_type, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository) {
    parent::__construct($entity_type);
    $this->contextHandler = $context_handler;
    $this->contextRepository = $context_repository;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal