YamlFormSelectOther.php in YAML Form 8
Same filename in this branch
Namespace
Drupal\yamlform\Plugin\YamlFormElementFile
src/Plugin/YamlFormElement/YamlFormSelectOther.phpView source
<?php
namespace Drupal\yamlform\Plugin\YamlFormElement;
/**
* Provides a 'select_other' element.
*
* @YamlFormElement(
* id = "yamlform_select_other",
* label = @Translation("Select other"),
* category = @Translation("Options elements"),
* )
*/
class YamlFormSelectOther extends Select {
/**
* {@inheritdoc}
*/
public function getDefaultProperties() {
return parent::getDefaultProperties() + self::getOtherProperties();
}
}
Classes
Name | Description |
---|---|
YamlFormSelectOther | Provides a 'select_other' element. |