You are here

public function FlexiformEntityFormDisplayEditForm::getFormEntityManager in Flexiform 8

Get the form entity manager.

Return value

\Drupal\flexiform\FormEntity\FlexiformFormEntityManager The entity form manager.

File

src/Form/FlexiformEntityFormDisplayEditForm.php, line 138

Class

FlexiformEntityFormDisplayEditForm
Provides Flexiform form elements for the EntityFormDisplay entity type.

Namespace

Drupal\flexiform\Form

Code

public function getFormEntityManager() {
  if (empty($this->formEntityManager)) {
    $this->formEntityManager = $this->entity
      ->getFormEntityManager();
  }
  return $this->formEntityManager;
}