You are here

public function BricksTreeInlineWidget::form in Bricks​ 2.x

Same name and namespace in other branches
  1. 8 modules/bricks_inline/src/Plugin/Field/FieldWidget/BricksTreeInlineWidget.php \Drupal\bricks_inline\Plugin\Field\FieldWidget\BricksTreeInlineWidget::form()

File

modules/bricks_inline/src/Plugin/Field/FieldWidget/BricksTreeInlineWidget.php, line 28

Class

BricksTreeInlineWidget
Plugin annotation @FieldWidget( id = "bricks_tree_inline", label = @Translation("Bricks tree (Inline entity form)"), description = @Translation("A tree of inline entity forms."), field_types = { "bricks", "bricks_revisioned" }, …

Namespace

Drupal\bricks_inline\Plugin\Field\FieldWidget

Code

public function form(FieldItemListInterface $items, array &$form, FormStateInterface $form_state, $get_delta = NULL) {
  $elements = parent::form($items, $form, $form_state, $get_delta);

  // Signal to content_translation that this field should be treated as
  // multilingual and not be hidden, see
  // \Drupal\content_translation\ContentTranslationHandler::entityFormSharedElements().
  $elements['#multilingual'] = TRUE;
  return $elements;
}