You are here

function ViewsPdfBase::Footer in Views PDF 8

This method must be overriden, in the other case, some output is printed to the footer.

File

src/ViewsPdfBase.php, line 264
Contains \Drupal\views_pdf\ViewsPdfTemplate.

Class

ViewsPdfBase
The main class to generate the PDF.

Namespace

Drupal\views_pdf

Code

function Footer() {
  $this
    ->SetY(-$this->bMargin);
  if (!empty($this->views_footer)) {
    $this
      ->writeHTML($this->views_footer);
  }
}