You are here

public function BlockContentBlock::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/block_content/src/Plugin/Block/BlockContentBlock.php \Drupal\block_content\Plugin\Block\BlockContentBlock::__construct()

Constructs a new BlockContentBlock.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Block\BlockManagerInterface $block_manager: The Plugin Block Manager.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

\Drupal\Core\Session\AccountInterface $account: The account for which view access should be checked.

\Drupal\Core\Routing\UrlGeneratorInterface $url_generator: The URL generator.

\Drupal\block_content\BlockContentUuidLookup $uuid_lookup: The block content UUID lookup service.

\Drupal\Core\Entity\EntityDisplayRepositoryInterface $entity_display_repository: The entity display repository.

Overrides BlockPluginTrait::__construct

File

core/modules/block_content/src/Plugin/Block/BlockContentBlock.php, line 100

Class

BlockContentBlock
Defines a generic custom block type.

Namespace

Drupal\block_content\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, BlockManagerInterface $block_manager, EntityTypeManagerInterface $entity_type_manager, AccountInterface $account, UrlGeneratorInterface $url_generator, BlockContentUuidLookup $uuid_lookup, EntityDisplayRepositoryInterface $entity_display_repository) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->blockManager = $block_manager;
  $this->entityTypeManager = $entity_type_manager;
  $this->account = $account;
  $this->urlGenerator = $url_generator;
  $this->uuidLookup = $uuid_lookup;
  $this->entityDisplayRepository = $entity_display_repository;
}