You are here

public function Checkboxes::supportsMultipleValues in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/Checkboxes.php \Drupal\webform\Plugin\WebformElement\Checkboxes::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/Checkboxes.php, line 59

Class

Checkboxes
Provides a 'checkboxes' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function supportsMultipleValues() {
  return TRUE;
}