function View::render in Views (for Drupal 7) 8.3
Same name in this branch
- 8.3 lib/Views/comment/Plugin/views/row/View.php \Views\comment\Plugin\views\row\View::render()
- 8.3 lib/Views/search/Plugin/views/row/View.php \Views\search\Plugin\views\row\View::render()
- 8.3 lib/Drupal/views/Plugin/views/area/View.php \Drupal\views\Plugin\views\area\View::render()
Override the behavior of the render() function.
Overrides RowPluginBase::render
File
- lib/
Views/ search/ Plugin/ views/ row/ View.php, line 45 - Definition of Views\search\Plugin\views\row\View.
Class
- View
- Plugin which performs a node_view on the resulting object.
Namespace
Views\search\Plugin\views\rowCode
function render($row) {
return theme($this
->themeFunctions(), array(
'view' => $this->view,
'options' => $this->options,
'row' => $row,
));
}