You are here

public function YamlForm::getElementsFlattenedAndHasValue in YAML Form 8

Get form flattened list of elements.

Return value

array Form elements flattened into an associative array keyed by element name.

Overrides YamlFormInterface::getElementsFlattenedAndHasValue

File

src/Entity/YamlForm.php, line 722

Class

YamlForm
Defines the form entity.

Namespace

Drupal\yamlform\Entity

Code

public function getElementsFlattenedAndHasValue() {
  $this
    ->initElements();
  return $this->elementsFlattenedAndHasValue;
}