public function DisplayPluginBase::renderArea

3 calls to DisplayPluginBase::renderArea()
DisplayPluginBase::renderEmpty in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
DisplayPluginBase::renderFooter in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Render the footer of the view.
DisplayPluginBase::renderHeader in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Render the header of the view.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 2497
Contains 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\display

Code

public function renderArea($area, $empty = FALSE) {
  $return = '';
  foreach ($this
    ->getHandlers($area) as $area) {
    $return .= $area
      ->render($empty);
  }
  return $return;
}