entity_reference_view_widget.module in Entity Reference View Widget 8
File
entity_reference_view_widget.moduleView 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'] = '';
}
}
Functions
Name | Description |
---|---|
entity_reference_view_widget_preprocess_views_view | Implemenents hook_preprocess_HOOK(). |