function views_plugin_display::render_footer in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 plugins/views_plugin_display.inc \views_plugin_display::render_footer()
- 7.3 plugins/views_plugin_display.inc \views_plugin_display::render_footer()
Render the footer of the view.
File
- plugins/
views_plugin_display.inc, line 1804 - Contains the base display plugin.
Class
- views_plugin_display
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Code
function render_footer() {
if (!empty($this->view->result) || $this
->get_option('footer_empty')) {
return $this
->render_textarea('footer');
}
}