1 | <?php |
||
18 | class Summernote 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) |
||
64 | |||
65 | /** |
||
66 | * Implements hook "route.list" |
||
67 | * @param array $routes |
||
68 | */ |
||
69 | public function hookRouteList(array &$routes) |
||
78 | |||
79 | /** |
||
80 | * Implements hook "construct.controller.backend" |
||
81 | * @param \gplcart\core\controllers\backend\Controller $controller |
||
82 | */ |
||
83 | public function hookConstructControllerBackend($controller) |
||
94 | |||
95 | /** |
||
96 | * Implements hook "module.enable.after" |
||
97 | */ |
||
98 | public function hookModuleEnableAfter() |
||
102 | |||
103 | /** |
||
104 | * Implements hook "module.disable.after" |
||
105 | */ |
||
106 | public function hookModuleDisableAfter() |
||
110 | |||
111 | /** |
||
112 | * Implements hook "module.install.after" |
||
113 | */ |
||
114 | public function hookModuleInstallAfter() |
||
118 | |||
119 | /** |
||
120 | * Implements hook "module.uninstall.after" |
||
121 | */ |
||
122 | public function hookModuleUninstallAfter() |
||
126 | |||
127 | } |
||
128 |