function BlockRepository::__construct
Same name in other branches
- 9 core/modules/block/src/BlockRepository.php \Drupal\block\BlockRepository::__construct()
- 8.9.x core/modules/block/src/BlockRepository.php \Drupal\block\BlockRepository::__construct()
- 10 core/modules/block/src/BlockRepository.php \Drupal\block\BlockRepository::__construct()
Constructs a new BlockRepository.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.
\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.
\Drupal\Core\Plugin\Context\ContextHandlerInterface $context_handler: The plugin context handler.
File
-
core/
modules/ block/ src/ BlockRepository.php, line 46
Class
- BlockRepository
- Provides a repository for Block config entities.
Namespace
Drupal\blockCode
public function __construct(EntityTypeManagerInterface $entity_type_manager, ThemeManagerInterface $theme_manager, ContextHandlerInterface $context_handler) {
$this->blockStorage = $entity_type_manager->getStorage('block');
$this->themeManager = $theme_manager;
$this->contextHandler = $context_handler;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.