You are here

public function ContentEntity::buildInlineForm in Commerce Core 8.2

Builds the inline form.

Parameters

array $inline_form: The inline form, containing the following basic properties:

  • #parents: Identifies the location of the field values in $form_state.

\Drupal\Core\Form\FormStateInterface $form_state: The form state of the complete form.

Return value

array The built inline form.

Overrides InlineFormBase::buildInlineForm

File

src/Plugin/Commerce/InlineForm/ContentEntity.php, line 45

Class

ContentEntity
Provides an inline form for managing a content entity.

Namespace

Drupal\commerce\Plugin\Commerce\InlineForm

Code

public function buildInlineForm(array $inline_form, FormStateInterface $form_state) {
  $inline_form = parent::buildInlineForm($inline_form, $form_state);
  assert($this->entity instanceof ContentEntityInterface);
  if ($this->entity
    ->isTranslatable()) {
    $this->entity = $this
      ->ensureTranslation($this->entity, $form_state);
  }
  $form_display = EntityFormDisplay::collectRenderDisplay($this->entity, $this->configuration['form_mode']);
  $form_display
    ->buildForm($this->entity, $inline_form, $form_state);
  return $inline_form;
}