You are here

WebformSelectOther.php in Webform 6.x

File

src/Plugin/WebformElement/WebformSelectOther.php
View source
<?php

namespace Drupal\webform\Plugin\WebformElement;

use Drupal\webform\Plugin\WebformElementOtherInterface;

/**
 * Provides a 'select_other' element.
 *
 * @WebformElement(
 *   id = "webform_select_other",
 *   label = @Translation("Select other"),
 *   description = @Translation("Provides a form element for a drop-down menu or scrolling selection box, with the ability to enter a custom value."),
 *   category = @Translation("Options elements"),
 * )
 */
class WebformSelectOther extends Select implements WebformElementOtherInterface {

}

Classes

Namesort descending Description
WebformSelectOther Provides a 'select_other' element.