You are here

entity_reference_view_widget.module in Entity Reference View Widget 8

File

entity_reference_view_widget.module
View source
<?php

/**
 * Implemenents hook_preprocess_HOOK().
 */
function entity_reference_view_widget_preprocess_views_view(&$variables) {
  if ($variables['view']
    ->getDisplay()
    ->getPluginID() == 'entity_reference_view_widget') {
    $variables['exposed'] = '';
  }
}