You are here

public function TableSelect::supportsMultipleValues in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/TableSelect.php \Drupal\webform\Plugin\WebformElement\TableSelect::supportsMultipleValues()

Checks if the element supports multiple values.

Return value

bool TRUE if the element supports multiple values.

Overrides WebformElementBase::supportsMultipleValues

File

src/Plugin/WebformElement/TableSelect.php, line 38

Class

TableSelect
Provides a 'tableselect' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function supportsMultipleValues() {
  return TRUE;
}