public function DisplayPluginBase::renderFooter in Views (for Drupal 7) 8.3
Render the footer of the view.
File
- lib/
Drupal/ views/ Plugin/ views/ display/ DisplayPluginBase.php, line 2449 - 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 renderFooter() {
$empty = empty($this->view->result);
return $this
->renderArea('footer', $empty);
}