1 | <?php |
||
24 | class PluginsPreload extends PreloadItem |
||
25 | { |
||
26 | /** |
||
27 | * listen for core.include.common.classmaps |
||
28 | * add any module specific class map entries |
||
29 | * |
||
30 | * @param mixed $args not used |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public static function eventCoreIncludeCommonClassmaps($args) |
||
42 | |||
43 | /** |
||
44 | * Filters an orders plugin listeners |
||
45 | * |
||
46 | * @param array $args |
||
47 | */ |
||
48 | public static function eventCoreModulePluginGetPlugins($args) |
||
55 | |||
56 | /** |
||
57 | * Updates plugins on module install |
||
58 | * |
||
59 | * @param $args |
||
60 | */ |
||
61 | public static function eventSystemModuleInstall($args) { |
||
66 | |||
67 | } |
||
68 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.