config.php 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. return [
  10. 'accessKey' => [// 在后台插件配置表单中的键名 ,会是config[text]
  11. 'title' => 'AccessKey', // 表单的label标题
  12. 'type' => 'text',// 表单的类型:text,password,textarea,checkbox,radio,select等
  13. 'value' => '',// 表单的默认值
  14. "rule" => [
  15. "require" => true
  16. ],
  17. "message" => [
  18. "require" => 'AccessKey不能为空'
  19. ],
  20. 'tip' => '<a href="https://portal.qiniu.com/qvm/active?code=1381757652Gn5y" target="_blank">马上获取</a>,充值使用ThinkCMF七牛专属优惠码<a href="http://www.thinkcmf.com/qiniu/promotion_code.html" target="_blank">507670e8</a>有更多优惠,<a href="http://www.thinkcmf.com/faq.html?url=https://www.kancloud.cn/thinkcmf/faq/507454" target="_blank">查看帮助手册</a>' //表单的帮助提示
  21. ],
  22. 'secretKey' => [// 在后台插件配置表单中的键名 ,会是config[password]
  23. 'title' => 'SecretKey',
  24. 'type' => 'text',
  25. 'value' => '',
  26. "rule" => [
  27. "require" => true
  28. ],
  29. "message" => [
  30. "require" => 'SecretKey不能为空'
  31. ],
  32. 'tip' => '<a href="https://portal.qiniu.com/signup?code=3lfihpz361o42" target="_blank">马上获取</a>, <a href="http://www.thinkcmf.com/faq.html?url=https://www.kancloud.cn/thinkcmf/faq/507454" target="_blank">查看帮助手册</a>'
  33. ],
  34. 'protocol' => [// 在后台插件配置表单中的键名 ,会是config[select]
  35. 'title' => '域名协议',
  36. 'type' => 'select',
  37. 'options' => [//select 和radio,checkbox的子选项
  38. 'http' => 'http',// 值=>显示
  39. 'https' => 'https',
  40. ],
  41. 'value' => 'http',
  42. "rule" => [
  43. "require" => true
  44. ],
  45. "message" => [
  46. "require" => '域名协议不能为空'
  47. ],
  48. 'tip' => ''
  49. ],
  50. 'domain' => [
  51. 'title' => '空间域名',
  52. 'type' => 'text',
  53. 'value' => '',
  54. "rule" => [
  55. "require" => true
  56. ],
  57. "message" => [
  58. "require" => '空间域名不能为空'
  59. ],
  60. 'tip' => ''
  61. ],
  62. 'bucket' => [
  63. 'title' => '空间名称',
  64. 'type' => 'text',
  65. 'value' => '',
  66. "rule" => [
  67. "require" => true
  68. ],
  69. "message" => [
  70. "require" => '空间名称不能为空'
  71. ],
  72. 'tip' => ''
  73. ],
  74. 'zone' => [// 在后台插件配置表单中的键名 ,会是config[select]
  75. 'title' => '存储区域',
  76. 'type' => 'select',
  77. 'options' => [//select 和radio,checkbox的子选项
  78. 'z0' => '华东',// 值=>显示
  79. 'z1' => '华北',
  80. 'z2' => '华南',
  81. 'na0' => '北美',
  82. 'as0' => '东南亚',
  83. ],
  84. 'value' => 'http',
  85. "rule" => [
  86. "require" => true
  87. ],
  88. "message" => [
  89. "require" => '存储区域不能为空'
  90. ],
  91. 'tip' => ''
  92. ],
  93. ];