Blame view

src/Template/Layout/pdf.ctp 196 Bytes
63c3cb16   epallier   Nombreux petits b...
1
2
3
4
<?php
$this->response->getHeaderLine([
    'Content-Disposition: attachment; filename="downloaded.pdf"'
]);
6bb4a0f7   Alexandre   Version: 2.2.2
5
6
7
$this->response->type('pdf');
$this->response->send();

63c3cb16   epallier   Nombreux petits b...
8
echo $this->fetch('content');
6bb4a0f7   Alexandre   Version: 2.2.2
9
?>