1 | <?php |
||
15 | class Investform extends \WebCMS\Module |
||
16 | { |
||
17 | /** |
||
18 | * [$name description] |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $name = 'Investform'; |
||
22 | |||
23 | /** |
||
24 | * [$author description] |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $author = 'Tomas Voslar'; |
||
28 | |||
29 | /** |
||
30 | * [$presenters description] |
||
31 | * @var array |
||
32 | */ |
||
33 | protected $presenters = array( |
||
34 | array( |
||
35 | 'name' => 'Investform', |
||
36 | 'frontend' => true, |
||
37 | 'parameters' => true |
||
38 | ), |
||
39 | array( |
||
40 | 'name' => 'Calculator', |
||
41 | 'frontend' => true, |
||
42 | 'parameters' => false |
||
43 | ), |
||
44 | array( |
||
45 | 'name' => 'Businessman', |
||
46 | 'frontend' => true, |
||
47 | 'parameters' => true |
||
48 | ), |
||
49 | array( |
||
50 | 'name' => 'Company', |
||
51 | 'frontend' => true, |
||
52 | 'parameters' => true |
||
53 | ), |
||
54 | array( |
||
55 | 'name' => 'Settings', |
||
56 | 'frontend' => false |
||
57 | ) |
||
58 | ); |
||
59 | |||
60 | public function __construct() |
||
64 | } |
||
65 |