You are here

WebformSelectOtherViews.php in Webform Views Integration 8.5

File

src/WebformElementViews/WebformSelectOtherViews.php
View source
<?php

namespace Drupal\webform_views\WebformElementViews;

use Drupal\webform\Plugin\WebformElementInterface;

/**
 * Webform views handler for "select or other" kind of elements.
 */
class WebformSelectOtherViews extends WebformDefaultViews {

  /**
   * {@inheritdoc}
   */
  public function getElementViewsData(WebformElementInterface $element_plugin, array $element) {
    $views_data = parent::getElementViewsData($element_plugin, $element);
    $views_data['filter']['id'] = 'webform_submission_select_other_filter';
    return $views_data;
  }

}

Classes

Namesort descending Description
WebformSelectOtherViews Webform views handler for "select or other" kind of elements.