You are here

public function Select::supportsMultipleValues in Webform 6.x

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

Checks if the element supports multiple values.

Return value

bool TRUE if the element supports multiple values.

Overrides WebformElementBase::supportsMultipleValues

1 method overrides Select::supportsMultipleValues()
WebformOptionsCustom::supportsMultipleValues in modules/webform_options_custom/src/Plugin/WebformElement/WebformOptionsCustom.php
Checks if the element supports multiple values.

File

src/Plugin/WebformElement/Select.php, line 48

Class

Select
Provides a 'select' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function supportsMultipleValues() {
  return TRUE;
}