
| 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/WebformTermSelect.php |
<?php
namespace Drupal\webform\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\Select;
/**
* Provides a webform element for a term select menu.
*
* @FormElement("webform_term_select")
*/
class WebformTermSelect extends Select {
use WebformTermReferenceTrait;
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#vocabulary' => '',
'#tree_delimiter' => '-',
'#breadcrumb' => FALSE,
'#breadcrumb_delimiter' => ' › ',
'#depth' => NULL,
] + parent::getInfo();
}
/**
* {@inheritdoc}
*/
public static function processSelect(&$element, FormStateInterface $form_state, &$complete_form) {
static::setOptions($element);
$element = parent::processSelect($element, $form_state, $complete_form);
// Must convert this element['#type'] to a 'select' to prevent
// "Illegal choice %choice in %name element" validation error.
// @see \Drupal\Core\Form\FormValidator::performRequiredValidation
$element['#type'] = 'select';
return $element;
}
}