You are here

public function MultipleEntityFormState::getFormEntityManager in Flexiform 8

Return value

\Drupal\flexiform\FormEntity\FlexiformFormEntityManager

Overrides MultipleEntityFormStateInterface::getFormEntityManager

File

src/MultipleEntityFormState.php, line 68

Class

MultipleEntityFormState

Namespace

Drupal\flexiform

Code

public function getFormEntityManager() {
  $managers_property = array_merge([
    'entity_manager',
  ], $this->parents, [
    '#manager',
  ]);
  return $this->decoratedFormState
    ->get($managers_property);
}