public function 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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!ContentEntityForm.php/function/ContentEntityForm::setFormDisplay/8.1.x