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