You are here

public function W2PDF::setFooterData in Webform2PDF 7.4

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

Set footer data.

Parameters

array $ln footer left, right image logo:

array $ls footer left, right image logo width, height in mm:

string $hs string to print on document footer:

string $hsa align string to print on document footer:

File

./webform2pdf.class.inc, line 92

Class

W2PDF

Code

public function setFooterData($ln = array(), $ls = array(), $hs = '', $hsa = '') {
  $this->footer_logo = $ln;
  $this->footer_logo_size = $ls;
  $this->footer_string = $hs;
  $this->footer_string_align = $hsa;
}