You are here

public function W2PDF::getFooterData in Webform2PDF 7.4

Same name and namespace in other branches
  1. 6.2 webform2pdf.class.inc \W2PDF::getFooterData()
  2. 6 webform2pdf.class.inc \W2PDF::getFooterData()
  3. 7.3 webform2pdf.class.inc \W2PDF::getFooterData()

Returns footer data:

@since 4.0.012 (2008-07-24)

Return value

array()

1 call to W2PDF::getFooterData()
W2PDF::Footer in ./webform2pdf.class.inc
This method is used to render the page footer. It is automatically called by AddPage() and could be overwritten in your own inherited class.

File

./webform2pdf.class.inc, line 104

Class

W2PDF

Code

public function getFooterData() {
  $ret = array();
  $ret['logo'] = $this->footer_logo;
  $ret['logo_size'] = $this->footer_logo_size;
  $ret['string'] = $this->footer_string;
  $ret['align'] = $this->footer_string_align;
  return $ret;
}