-
Notifications
You must be signed in to change notification settings - Fork 182
Open
Labels
Description
Metadata parameters not passed to mPDF engine. Am I doing something wrong?
Cakephp 3.9
mPDF 8.0.4
Configure::write('CakePdf', [
'engine' => [
'className' => 'CakePdf.Mpdf',
'options' => [
'SetTitle' => $this->titulo,
'SetAuthor' => $this->autor,
'SetCreator' => $this->criador,
'SetSubject' => $this->assunto,
'ShowWatermarkText' => true,
'SetWatermarkText' => 'RASCUNHO'
]
],
'orientation' => 'portrait',
'download' => true,
'filename' => $local_file,
]);