You are here

public function TextFormat::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/TextFormat.php, line 39

Class

TextFormat
Provides a 'text_format' element.

Namespace

Drupal\yamlform\Plugin\YamlFormElement

Code

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