config.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. return array(
  3. 0 =>
  4. array(
  5. 'name' => 'qq',
  6. 'title' => 'QQ',
  7. 'type' => 'array',
  8. 'content' =>
  9. array(
  10. 'app_id' => '',
  11. 'app_secret' => '',
  12. 'scope' => 'get_user_info',
  13. ),
  14. 'value' =>
  15. array(
  16. 'app_id' => '100000000',
  17. 'app_secret' => '123456',
  18. 'scope' => 'get_user_info',
  19. ),
  20. 'rule' => 'required',
  21. 'msg' => '',
  22. 'tip' => '',
  23. 'ok' => '',
  24. 'extend' => '',
  25. ),
  26. 1 =>
  27. array(
  28. 'name' => 'wechat',
  29. 'title' => '微信',
  30. 'type' => 'array',
  31. 'content' =>
  32. array(
  33. 'app_id' => '',
  34. 'app_secret' => '',
  35. 'callback' => '',
  36. 'scope' => 'snsapi_base',
  37. ),
  38. 'value' =>
  39. array(
  40. 'app_id' => '100000000',
  41. 'app_secret' => '123456',
  42. 'scope' => 'snsapi_userinfo',
  43. ),
  44. 'rule' => 'required',
  45. 'msg' => '',
  46. 'tip' => '',
  47. 'ok' => '',
  48. 'extend' => '',
  49. ),
  50. 2 =>
  51. array(
  52. 'name' => 'weibo',
  53. 'title' => '微博',
  54. 'type' => 'array',
  55. 'content' =>
  56. array(
  57. 'app_id' => '',
  58. 'app_secret' => '',
  59. 'scope' => 'get_user_info',
  60. ),
  61. 'value' =>
  62. array(
  63. 'app_id' => '100000000',
  64. 'app_secret' => '123456',
  65. 'scope' => 'get_user_info',
  66. ),
  67. 'rule' => 'required',
  68. 'msg' => '',
  69. 'tip' => '',
  70. 'ok' => '',
  71. 'extend' => '',
  72. ),
  73. 3 =>
  74. array(
  75. 'name' => 'bindaccount',
  76. 'title' => '账号绑定',
  77. 'type' => 'radio',
  78. 'content' =>
  79. array(
  80. 1 => '开启',
  81. 0 => '关闭',
  82. ),
  83. 'value' => '1',
  84. 'rule' => 'required',
  85. 'msg' => '',
  86. 'tip' => '',
  87. 'ok' => '是否开启账号绑定',
  88. 'extend' => '',
  89. ),
  90. 4 =>
  91. array(
  92. 'name' => 'status',
  93. 'title' => '前台第三方登录开关',
  94. 'type' => 'checkbox',
  95. 'content' =>
  96. array(
  97. 'qq' => 'QQ',
  98. 'wechat' => '微信',
  99. 'weibo' => '微博',
  100. ),
  101. 'value' => 'qq,wechat,weibo',
  102. 'rule' => '',
  103. 'msg' => '',
  104. 'tip' => '',
  105. 'ok' => '前台第三方登录的开关',
  106. 'extend' => '',
  107. ),
  108. 5 =>
  109. array(
  110. 'name' => 'rewrite',
  111. 'title' => '伪静态',
  112. 'type' => 'array',
  113. 'content' =>
  114. array(),
  115. 'value' =>
  116. array(
  117. 'index/index' => '/third$',
  118. 'index/connect' => '/third/connect/[:platform]',
  119. 'index/callback' => '/third/callback/[:platform]',
  120. 'index/bind' => '/third/bind/[:platform]',
  121. 'index/unbind' => '/third/unbind/[:platform]',
  122. ),
  123. 'rule' => 'required',
  124. 'msg' => '',
  125. 'tip' => '',
  126. 'ok' => '',
  127. 'extend' => '',
  128. ),
  129. );