You are here

public function WebformEntityReferenceSelectViews::getElementViewsData in Webform Views Integration 8.5

Generate views data definition that corresponds to given webform element.

Parameters

\Drupal\webform\Plugin\WebformElementInterface $element_plugin: Webform element plugin whose views data definition is requested

array $element: Webform element whose views data definition is requested

Return value

array Views data definition array that corresponds to the given webform element. The structure of this array should have the following structure:

  • field: (array) Views data 'field' section to use for this webform element
  • filter: (array) Views data 'filter' section to use for this webform element
  • sort: (array) Views data 'sort' section to use for this webform element
  • TODO: Do you need more here?

Overrides WebformEntityReferenceViews::getElementViewsData

File

src/WebformElementViews/WebformEntityReferenceSelectViews.php, line 15

Class

WebformEntityReferenceSelectViews
Webform views handler for entity reference select webform elements.

Namespace

Drupal\webform_views\WebformElementViews

Code

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