1 | <?php |
||
17 | class Main |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Library class instance |
||
22 | * @var \gplcart\core\Library $library |
||
23 | */ |
||
24 | protected $library; |
||
25 | |||
26 | /** |
||
27 | * @param Library $library |
||
28 | */ |
||
29 | public function __construct(Library $library) |
||
33 | |||
34 | /** |
||
35 | * Implements hook "library.list" |
||
36 | * @param array $libraries |
||
37 | */ |
||
38 | public function hookLibraryList(array &$libraries) |
||
55 | |||
56 | /** |
||
57 | * Implements hook "module.enable.after" |
||
58 | */ |
||
59 | public function hookModuleEnableAfter() |
||
63 | |||
64 | /** |
||
65 | * Implements hook "module.disable.after" |
||
66 | */ |
||
67 | public function hookModuleDisableAfter() |
||
71 | |||
72 | /** |
||
73 | * Implements hook "module.install.after" |
||
74 | */ |
||
75 | public function hookModuleInstallAfter() |
||
79 | |||
80 | /** |
||
81 | * Implements hook "module.uninstall.after" |
||
82 | */ |
||
83 | public function hookModuleUninstallAfter() |
||
87 | |||
88 | } |
||
89 |