1 | <?php |
||
18 | class Image extends Module |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * Library class instance |
||
23 | * @var \gplcart\core\Library $library |
||
24 | */ |
||
25 | protected $library; |
||
26 | |||
27 | /** |
||
28 | * @param Library $library |
||
29 | */ |
||
30 | public function __construct(Library $library) |
||
36 | |||
37 | /** |
||
38 | * Implements hook "library.list" |
||
39 | * @param array $libraries |
||
40 | */ |
||
41 | public function hookLibraryList(array &$libraries) |
||
56 | |||
57 | /** |
||
58 | * Implements hook "imagestyle.action.handlers" |
||
59 | * @param array $handlers |
||
60 | */ |
||
61 | public function hookImagestyleActionHandlers(array &$handlers) |
||
66 | |||
67 | /** |
||
68 | * Implements hook "module.enable.after" |
||
69 | */ |
||
70 | public function hookModuleEnableAfter() |
||
74 | |||
75 | /** |
||
76 | * Implements hook "module.disable.after" |
||
77 | */ |
||
78 | public function hookModuleDisableAfter() |
||
82 | |||
83 | /** |
||
84 | * Implements hook "module.install.after" |
||
85 | */ |
||
86 | public function hookModuleInstallAfter() |
||
90 | |||
91 | /** |
||
92 | * Implements hook "module.uninstall.after" |
||
93 | */ |
||
94 | public function hookModuleUninstallAfter() |
||
98 | |||
99 | } |
||
100 |