protected function BricksTreeDynamicInlineWidget::getAccessHandler in Bricks 8
Same name and namespace in other branches
- 2.x modules/bricks_dynamic/src/Plugin/Field/FieldWidget/BricksTreeDynamicInlineWidget.php \Drupal\bricks_dynamic\Plugin\Field\FieldWidget\BricksTreeDynamicInlineWidget::getAccessHandler()
Gets the access handler for the target entity type.
Return value
\Drupal\Core\Entity\EntityAccessControlHandlerInterface The access handler.
Overrides InlineEntityFormBase::getAccessHandler
File
- modules/
bricks_dynamic/ src/ Plugin/ Field/ FieldWidget/ BricksTreeDynamicInlineWidget.php, line 148
Class
- BricksTreeDynamicInlineWidget
- Plugin annotation @FieldWidget( id = "bricks_tree_dynamic_inline", label = @Translation("Bricks tree Dynamic (Inline entity form)"), description = @Translation("A tree of inline entity forms."), field_types = { "bricks_dynamic" }, …
Namespace
Drupal\bricks_dynamic\Plugin\Field\FieldWidgetCode
protected function getAccessHandler() {
return $this->entityTypeManager
->getAccessControlHandler($this
->getEntityType());
}