/** * This function must be named "Footer" to work with the TCPDF library * * @return void * * @see PMA_PDF::Footer() */ function Footer() { global $with_doc; if ($with_doc) { parent::Footer(); } }
/** * This function must be named "Footer" to work with the TCPDF library * * @return void * * @see PMA_PDF::Footer() */ public function Footer() { if ($this->_withDoc) { parent::Footer(); } }