You are here

public function WebformTableSort::hasMultipleValues in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformElement/WebformTableSort.php \Drupal\webform\Plugin\WebformElement\WebformTableSort::hasMultipleValues()

Checks if the element value has multiple values.

Parameters

array $element: An element.

Return value

bool TRUE if the element value has multiple values.

Overrides WebformElementBase::hasMultipleValues

File

src/Plugin/WebformElement/WebformTableSort.php, line 47

Class

WebformTableSort
Provides a 'webform_table_sort' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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