ContentEntityForm::setFormDisplay

public ContentEntityForm::setFormDisplay(EntityFormDisplayInterface $form_display, FormStateInterface $form_state)

Sets the form display.

Sets the form display which will be used for populating form element defaults.

Parameters

\Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display: The form display that the current form operates with.

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

Return value

$this

Overrides ContentEntityFormInterface::setFormDisplay

File

core/lib/Drupal/Core/Entity/ContentEntityForm.php, line 245

Class

ContentEntityForm
Entity form variant for content entity types.

Namespace

Drupal\Core\Entity

Code

public function setFormDisplay(EntityFormDisplayInterface $form_display, FormStateInterface $form_state) {
  $form_state->set('form_display', $form_display);
  return $this;
}
doc_Drupal
2016-10-29 08:57:16
Comments
Leave a Comment

Please login to continue.