You are here

public function Webform::getElementsComputed in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Entity/Webform.php \Drupal\webform\Entity\Webform::getElementsComputed()

Get webform computed elements.

Return value

array Webform computed elements.

Overrides WebformInterface::getElementsComputed

File

src/Entity/Webform.php, line 1322

Class

Webform
Defines the webform entity.

Namespace

Drupal\webform\Entity

Code

public function getElementsComputed() {
  $this
    ->initElements();
  return $this->elementsComputed;
}