public function WebformActions::isInput in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Plugin/WebformElement/WebformActions.php \Drupal\webform\Plugin\WebformElement\WebformActions::isInput()
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/ WebformElement/ WebformActions.php, line 49
Class
- WebformActions
- Provides a 'webform_actions' element.
Namespace
Drupal\webform\Plugin\WebformElementCode
public function isInput(array $element) {
return FALSE;
}