1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- return [
- 'autoload' => false,
- 'hooks' => [
- 'admin_nologin' => [
- 'adminlogin',
- ],
- 'module_init' => [
- 'adminlogin',
- 'alioss',
- 'apilog',
- 'third',
- ],
- 'app_init' => [
- 'alioss',
- 'crontab',
- 'shop',
- ],
- 'upload_config_init' => [
- 'alioss',
- ],
- 'upload_delete' => [
- 'alioss',
- ],
- 'sms_send' => [
- 'alisms',
- ],
- 'sms_notice' => [
- 'alisms',
- ],
- 'sms_check' => [
- 'alisms',
- ],
- 'response_send' => [
- 'apilog',
- ],
- 'view_filter' => [
- 'betterform',
- 'shop',
- 'third',
- ],
- 'config_init' => [
- 'betterform',
- 'nkeditor',
- 'third',
- ],
- 'upgrade' => [
- 'shop',
- ],
- 'user_sidenav_after' => [
- 'shop',
- 'signin',
- ],
- 'user_delete_successed' => [
- 'third',
- ],
- 'user_logout_successed' => [
- 'third',
- ],
- 'action_begin' => [
- 'third',
- ],
- ],
- 'route' => [
- '/shop/$' => 'shop/index/index',
- '/shop/a/[:id]' => 'shop/goods/index',
- '/shop/p/[:diyname]' => 'shop/page/index',
- '/shop/s' => 'shop/search/index',
- '/shop/c/[:diyname]' => 'shop/category/index',
- '/shop/coupon/[:coupon]' => 'shop/coupon/show',
- '/shop/coupon' => 'shop/coupon/index',
- '/shop/exchange/[:id]' => 'shop/exchange/show',
- '/shop/exchange' => 'shop/exchange/index',
- '/third$' => 'third/index/index',
- '/third/connect/[:platform]' => 'third/index/connect',
- '/third/callback/[:platform]' => 'third/index/callback',
- '/third/bind/[:platform]' => 'third/index/bind',
- '/third/unbind/[:platform]' => 'third/index/unbind',
- ],
- 'priority' => [],
- 'domain' => '',
- ];
|