You are here

public function WebformOptionsCustom::supportsMultipleValues in Webform 6.x

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

Checks if the element supports multiple values.

Return value

bool TRUE if the element supports multiple values.

Overrides Select::supportsMultipleValues

File

modules/webform_options_custom/src/Plugin/WebformElement/WebformOptionsCustom.php, line 57

Class

WebformOptionsCustom
Provides a custom options element.

Namespace

Drupal\webform_options_custom\Plugin\WebformElement

Code

public function supportsMultipleValues() {
  return TRUE;
}