
| Current Path : /var/www/html/c12park/web/modules/contrib/webform/src/Plugin/WebformElement/ |
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/Plugin/WebformElement/WebformEntityRadios.php |
<?php
namespace Drupal\webform\Plugin\WebformElement;
use Drupal\webform\Plugin\WebformElementEntityOptionsInterface;
/**
* Provides a 'webform_entity_radios' element.
*
* @WebformElement(
* id = "webform_entity_radios",
* label = @Translation("Entity radios"),
* description = @Translation("Provides a form element to select a single entity reference using radio buttons."),
* category = @Translation("Entity reference elements"),
* )
*/
class WebformEntityRadios extends Radios implements WebformElementEntityOptionsInterface {
use WebformEntityReferenceTrait;
use WebformEntityOptionsTrait;
}