CakePdf\Pdf\CakePdf::helpers PHP Method

helpers() public method

Helpers to be used in render
public helpers ( array $helpers = null ) : mixed
$helpers array helpers to use
return mixed
    public function helpers($helpers = null)
    {
        if ($helpers === null) {
            return $this->_helpers;
        }
        $this->_helpers = (array) $helpers;
        return $this;
    }

Usage Example

Esempio n. 1
0
 /**
  * testPluginOutput
  *
  * @dataProvider provider
  */
 public function testPluginOutput($config)
 {
     $pdf = new CakePdf($config);
     Plugin::load('MyPlugin', ['autoload' => true]);
     $pdf->viewVars(['data' => 'testing']);
     $pdf->template('MyPlugin.testing', 'MyPlugin.pdf');
     $pdf->helpers('MyPlugin.MyTest');
     $result = $pdf->output();
     $expected = 'MyPlugin Layout Data: testing';
     $this->assertEquals($expected, $result);
     $pdf->template('MyPlugin.testing', 'MyPlugin.default');
     $result = $pdf->output();
     $lines = ['<h2>Rendered with default layout from MyPlugin</h2>', 'MyPlugin view Data: testing', 'MyPlugin Helper Test: successful'];
     foreach ($lines as $line) {
         $this->assertTrue(strpos($result, $line) !== false);
     }
 }