You are here

public function WebformHorizontalRule::isInput in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformElement/WebformHorizontalRule.php \Drupal\webform\Plugin\WebformElement\WebformHorizontalRule::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

File

src/Plugin/WebformElement/WebformHorizontalRule.php, line 43

Class

WebformHorizontalRule
Provides a 'webform_horizontal_rule' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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