You are here

public function YamlForm::getElementsInitialized in YAML Form 8

Get form elements initialized as an associative array.

Return value

array|bool Elements as an associative array. Returns FALSE is elements YAML is invalid.

Overrides YamlFormInterface::getElementsInitialized

1 call to YamlForm::getElementsInitialized()
YamlForm::getPages in src/Entity/YamlForm.php
Get form wizard pages.

File

src/Entity/YamlForm.php, line 698

Class

YamlForm
Defines the form entity.

Namespace

Drupal\yamlform\Entity

Code

public function getElementsInitialized() {
  $this
    ->initElements();
  return $this->elementsInitialized;
}