You are here

public function ContentEntity::validateInlineForm in Commerce Core 8.2

Validates 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.

Overrides InlineFormBase::validateInlineForm

File

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

Class

ContentEntity
Provides an inline form for managing a content entity.

Namespace

Drupal\commerce\Plugin\Commerce\InlineForm

Code

public function validateInlineForm(array &$inline_form, FormStateInterface $form_state) {
  parent::validateInlineForm($inline_form, $form_state);
  assert($this->entity instanceof ContentEntityInterface);
  $form_display = EntityFormDisplay::collectRenderDisplay($this->entity, $this->configuration['form_mode']);
  $form_display
    ->extractFormValues($this->entity, $inline_form, $form_state);
  $form_display
    ->validateFormValues($this->entity, $inline_form, $form_state);
}