Search code examples
cakephpthemescakephp-3.0adminlte

CakePdf in theme AdminLTE - CakePhp 3


How to use Cakepdf in theme AdminLTE? I can not generate the pdf following the steps of http://www.edsonmm.com/generar-pdf-en-cakephp-con-el-plugin-cakepdf/#cakephp3 Without theme AdminLTE, works correctly


Solution

  • You have to create the file src/Template/Layout/pdf/AdminLTE.ctp

    On the AppController: $this->viewBuilder()->layout('AdminLTE');

    On the controller: $this->viewBuilder()->setClassName('CakePdf.Pdf');

    And on the action Template something like: /src/Template/Services/pdf/export.ctp

    It Worked for me.