123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
-
-
- $user_config = array(
-
- 'paginate' => array(
- 'type' => 'eyou',
- 'var_page' => 'page',
- 'list_rows' => 15,
- ),
-
-
-
-
- 'dispatch_error_tmpl' => 'public/static/common/dispatch_jump.htm',
-
- 'dispatch_success_tmpl' => 'public/static/common/dispatch_jump.htm',
-
-
-
-
-
-
-
-
-
-
-
-
- 'HTML_CACHE_ARR'=> array(),
-
-
- 'filter_login_action' => array(
- 'Users@login',
- 'Users@logout',
- 'Users@reg',
- 'Users@mobile_login',
- 'Users@mobile_reg',
- 'Users@vertify',
- 'Users@retrieve_password',
- 'Users@reset_password',
- 'Users@retrieve_password_mobile',
- 'Users@reset_password_mobile',
- 'Users@get_wechat_info',
- 'Users@users_select_login',
- 'Users@ajax_wechat_login',
- 'Users@pc_wechat_login',
- 'Pay@alipay_return',
- 'Pay@pay_deal_with',
- 'Pay@get_openid',
- 'Pay@ajax_applets_pay',
- 'Pay@wechat_pay',
- 'Smtpmail@*',
- 'LoginApi@*',
- ),
- );
-
- $html_config = include_once 'html.php';
- return array_merge($user_config, $html_config);
- ?>
|