You are here

public function views_plugin_display::render_footer in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_display.inc \views_plugin_display::render_footer()
  2. 6.2 plugins/views_plugin_display.inc \views_plugin_display::render_footer()

Render the footer of the view.

File

plugins/views_plugin_display.inc, line 2782
Definition of views_plugin_display.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

public function render_footer() {
  $empty = !empty($this->view->result);
  return $this
    ->render_area('footer', $empty);
}