public function Table::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/ Table.php, line 45
Class
- Table
- Provides a 'table' element.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function isInput(array $element) {
return FALSE;
}