1 | <?php |
||
17 | class Image extends Module |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | */ |
||
23 | public function __construct() |
||
27 | |||
28 | /** |
||
29 | * Implements hook "library.list" |
||
30 | * @param array $libraries |
||
31 | */ |
||
32 | public function hookLibraryList(array &$libraries) |
||
47 | |||
48 | /** |
||
49 | * Implements hook "imagestyle.action.handlers" |
||
50 | * @param array $handlers |
||
51 | */ |
||
52 | public function hookImagestyleActionHandlers(array &$handlers) |
||
56 | |||
57 | /** |
||
58 | * Returns an array of image style actions |
||
59 | * @return array |
||
60 | */ |
||
61 | public function getActionHandlers() |
||
72 | |||
73 | /** |
||
74 | * Implements hook "module.enable.after" |
||
75 | */ |
||
76 | public function hookModuleEnableAfter() |
||
80 | |||
81 | /** |
||
82 | * Implements hook "module.disable.after" |
||
83 | */ |
||
84 | public function hookModuleDisableAfter() |
||
88 | |||
89 | /** |
||
90 | * Implements hook "module.install.after" |
||
91 | */ |
||
92 | public function hookModuleInstallAfter() |
||
96 | |||
97 | /** |
||
98 | * Implements hook "module.uninstall.after" |
||
99 | */ |
||
100 | public function hookModuleUninstallAfter() |
||
104 | |||
105 | } |
||
106 |