You are here

public function WebformTableSelectSort::hasMultipleValues in Webform 8.5

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

Class

WebformTableSelectSort
Provides a 'webform_tableselect_sort' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

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