Add text below the scheduler in PDF file for PHP

I’ve successfully managed to download and install dhtmlxscheduler for PHP even export to pdf and i have been trying to figure out how to add text just below the scheduler when i export it in the pdf file. The text I want to add is html code with data.

If anyone can assist I’d be very grateful. Thanks in advance. :wink:

Export to PDF allows to include only image header and image footer. If you need some more complex content - only way is to modify export library.

I create a custom function called from pdfGenerator.php in this way:

$this->wrapper->drawCustom();

In pdfWrapper.php, you must write that function:

public function drawCustom() {

}

Thanks a lot