12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- return [
-
- 'app_init' => [
- 'app\\common\\behavior\\Common',
- ],
-
- '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' => [],
- ];
|