You are here

public function ContainerBase::isInput in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/ContainerBase.php \Drupal\webform\Plugin\WebformElement\ContainerBase::isInput()

Checks if the element carries a value.

Parameters

array $element: An element.

Return value

bool TRUE if the element carries a value.

Overrides WebformElementBase::isInput

2 methods override ContainerBase::isInput()
WebformActions::isInput in src/Plugin/WebformElement/WebformActions.php
Checks if the element carries a value.
WebformWizardPage::isInput in src/Plugin/WebformElement/WebformWizardPage.php
Checks if the element carries a value.

File

src/Plugin/WebformElement/ContainerBase.php, line 51

Class

ContainerBase
Provides a base 'container' class.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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