1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- return [
-
- 'app_init' => [],
-
- 'app_begin' => [],
-
- 'app_dispatch' => [
- 'app\\common\\behavior\\Common',
- ],
-
- 'module_init' => [
- 'app\\common\\behavior\\Common',
- ],
-
- 'addon_begin' => [
- 'app\\common\\behavior\\Common',
- ],
-
- 'action_begin' => [],
-
- 'view_filter' => [],
-
- 'log_write' => [],
-
- 'app_end' => [],
- ];
|