You are here

public function MultipleEntityForm::getFormEntityConfig in Flexiform 8

Get the config for an entity namespace.

Return value

array|false The entity config or FALSE if it doesn't exist.

File

src/Plugin/FormEnhancer/MultipleEntityForm.php, line 125

Class

MultipleEntityForm
Form enhancer for multiple entity forms.

Namespace

Drupal\flexiform\Plugin\FormEnhancer

Code

public function getFormEntityConfig($namespace) {
  return $this->configuration['entities'][$namespace] ?? FALSE;
}