public function SearchApiMultiRowEntityView::pre_render in Search API Multi-Index Searches 7
Allow the style to do stuff before each row is rendered.
Parameters
array $result: The full array of results from the query.
Overrides views_plugin_row::pre_render
File
- views/
row_entity_view.inc, line 142 - Contains the SearchApiMultiRowEntityView class.
Class
- SearchApiMultiRowEntityView
- Plugin class for displaying Views results with entity_view.
Code
public function pre_render($values) {
if (!empty($values)) {
list(, $this->wrappers) = $this->view->query
->get_result_wrappers($values);
}
}