1 | <?php |
||
18 | class Summernote extends Module |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @param Config $config |
||
23 | */ |
||
24 | public function __construct(Config $config) |
||
28 | |||
29 | /** |
||
30 | * Implements hook "library.list" |
||
31 | * @param array $libraries |
||
32 | */ |
||
33 | public function hookLibraryList(array &$libraries) |
||
56 | |||
57 | /** |
||
58 | * Implements hook "route.list" |
||
59 | * @param array $routes |
||
60 | */ |
||
61 | public function hookRouteList(array &$routes) |
||
70 | |||
71 | /** |
||
72 | * Implements hook "construct.controller.backend" |
||
73 | * @param \gplcart\core\controllers\backend\Controller $controller |
||
74 | */ |
||
75 | public function hookConstructControllerBackend($controller) |
||
79 | |||
80 | /** |
||
81 | * Implements hook "module.enable.after" |
||
82 | */ |
||
83 | public function hookModuleEnableAfter() |
||
87 | |||
88 | /** |
||
89 | * Implements hook "module.disable.after" |
||
90 | */ |
||
91 | public function hookModuleDisableAfter() |
||
95 | |||
96 | /** |
||
97 | * Implements hook "module.install.after" |
||
98 | */ |
||
99 | public function hookModuleInstallAfter() |
||
103 | |||
104 | /** |
||
105 | * Implements hook "module.uninstall.after" |
||
106 | */ |
||
107 | public function hookModuleUninstallAfter() |
||
111 | |||
112 | /** |
||
113 | * Sets module specific assets |
||
114 | * @param \gplcart\core\controllers\backend\Controller $controller |
||
115 | */ |
||
116 | protected function setModuleAssets($controller) |
||
127 | |||
128 | } |
||
129 |