
| Current Path : /var/www/html/c12park/web/modules/contrib/webform/src/Element/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/c12park/web/modules/contrib/webform/src/Element/WebformSelectOther.php |
<?php
namespace Drupal\webform\Element;
/**
* Provides a webform element for a select menu with an other option.
*
* See #empty_option and #empty_value for an explanation of various settings for
* a select element, including behavior if #required is TRUE or FALSE.
*
* @FormElement("webform_select_other")
*/
class WebformSelectOther extends WebformOtherBase {
/**
* {@inheritdoc}
*/
protected static $type = 'select';
/**
* {@inheritdoc}
*/
protected static $properties = [
'#title',
'#required',
'#required_error',
'#options',
'#default_value',
'#attributes',
'#multiple',
'#empty_value',
'#empty_option',
'#sort_options',
'#ajax',
];
}