public function Select::supportsMultipleValues in Webform 8.5
Same name and namespace in other branches
- 6.x 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\WebformElementCode
public function supportsMultipleValues() {
return TRUE;
}