You are here

public function YamlFormWizardPage::isInput in YAML Form 8

Checks if the element carries a value.

Parameters

array $element: An element.

Return value

bool TRUE if the element carries a value.

Overrides ContainerBase::isInput

File

src/Plugin/YamlFormElement/YamlFormWizardPage.php, line 42

Class

YamlFormWizardPage
Provides a 'yamlform_wizard_page' element.

Namespace

Drupal\yamlform\Plugin\YamlFormElement

Code

public function isInput(array $element) {
  return FALSE;
}