You are here

public function FieldInheritanceForm::updateFieldOptions in Field Inheritance 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/FieldInheritanceForm.php \Drupal\field_inheritance\Form\FieldInheritanceForm::updateFieldOptions()

AJAX Callback: Update Field Options.

File

src/Form/FieldInheritanceForm.php, line 508

Class

FieldInheritanceForm
Provides a form for managing field inheritance entities.

Namespace

Drupal\field_inheritance\Form

Code

public function updateFieldOptions(array &$form, FormStateInterface $form_state) {
  $form_state
    ->setRebuild();
  $response = new AjaxResponse();
  $response
    ->addCommand(new HtmlCommand('#field-inheritance-add-form--wrapper', $form));
  return $response;
}