You are here

public function Captcha::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 YamlFormElementBase::isInput

File

src/Plugin/YamlFormElement/Captcha.php, line 39

Class

Captcha
Provides a 'captcha' element.

Namespace

Drupal\yamlform\Plugin\YamlFormElement

Code

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