initial commit
[namibia] / module / PriceGuide / src / PriceGuide / DataBin / Pdf.php
1 <?php
2 namespace PriceGuide\DataBin;
3
4
5
6 /**
7  * Stock PDF exports.
8  * @author andre.fourie
9  */
10 class Pdf extends \Workspace\Service\DataBin
11 {
12
13         /**
14          * @var array
15          */
16         protected $meta = array(
17                         'Base'        => 'PriceGuide',
18                         'DatasetName' => 'valuation',
19                         'Entity'      => '\PriceGuide\Entity\PriceGuide',
20                         'References'  => array(),
21                         'Dependants'  => array()
22         );
23         /**
24          * @var array
25         */
26         protected $metaPrint = array(
27                         'Type'          => 'Pdf',
28                         'Builder'       => '\PriceGuide\Pdf\Pdf004',
29                         'Writer'        => '\Utility\Export\PdfTemplate',
30                         'Output'        => 'Download',
31                         'RequiredInput' => array(),
32                         'OptionalInput' => array(
33                                         'PdfTemplate' => array(
34                                                         'email' => 'Email'
35                                         )
36                         )
37         );
38         /**
39          * @var array
40         */
41         protected $metaPrint004 = array(
42                         'Type'          => 'Pdf',
43                         'Builder'       => '\PriceGuide\Pdf\Pdf004',
44                         'Writer'        => '\Utility\Export\PdfTemplate',
45                         'Output'        => 'Download',
46                         'RequiredInput' => array(),
47                         'OptionalInput' => array(
48                                         'PdfTemplate' => array(
49                                                         'email' => 'Email'
50                                         )
51                         )
52         );
53
54 }