public function FieldableEdgeEntityForm::setFormDisplay in Apigee Edge 8
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 FieldableEdgeEntityFormInterface::setFormDisplay
1 call to FieldableEdgeEntityForm::setFormDisplay()
- FieldableEdgeEntityForm::init in src/
Entity/ Form/ FieldableEdgeEntityForm.php - Initialize the form state and the entity before the first form build.
File
- src/
Entity/ Form/ FieldableEdgeEntityForm.php, line 190
Class
- FieldableEdgeEntityForm
- Base entity form for fieldable Apigee Edge entity types.
Namespace
Drupal\apigee_edge\Entity\FormCode
public function setFormDisplay(EntityFormDisplayInterface $form_display, FormStateInterface $form_state) {
$form_state
->set('form_display', $form_display);
return $this;
}