You are here

public function WebformTableSort::getTestValues in Webform 8.5

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

Get test values for an element.

Parameters

array $element: An element.

\Drupal\webform\WebformInterface $webform: A webform.

array $options: Options used to generate a test value.

Return value

mixed A test value for an element.

Overrides WebformElementBase::getTestValues

File

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

Class

WebformTableSort
Provides a 'webform_table_sort' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function getTestValues(array $element, WebformInterface $webform, array $options = []) {
  $values = array_keys($element['#options']);
  if ($options['random']) {
    shuffle($values);
  }
  return $values;
}