public function DisplayPluginBase::render in Views (for Drupal 7) 8.3
Render this display.
1 method overrides DisplayPluginBase::render()
- Feed::render in lib/
Drupal/ views/ Plugin/ views/ display/ Feed.php - Instead of going through the standard views_view.tpl.php, delegate this to the style handler.
File
- lib/
Drupal/ views/ Plugin/ views/ display/ DisplayPluginBase.php, line 2471 - Definition of Drupal\views\Plugin\views\display\DisplayPluginBase.
Class
- DisplayPluginBase
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Namespace
Drupal\views\Plugin\views\displayCode
public function render() {
return theme($this
->themeFunctions(), array(
'view' => $this->view,
));
}