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) |
||
54 | |||
55 | /** |
||
56 | * Implements hook "module.install.before" |
||
57 | * @param null|string |
||
58 | */ |
||
59 | public function hookModuleInstallBefore(&$result) |
||
67 | |||
68 | } |
||
69 |