config.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. return array(
  3. array(
  4. 'name' => 'key',
  5. 'title' => '应用key',
  6. 'type' => 'string',
  7. 'content' =>
  8. array(),
  9. 'value' => 'your key',
  10. 'rule' => 'required',
  11. 'msg' => '',
  12. 'tip' => '',
  13. 'ok' => '',
  14. 'extend' => '',
  15. ),
  16. array(
  17. 'name' => 'secret',
  18. 'title' => '密钥secret',
  19. 'type' => 'string',
  20. 'content' =>
  21. array(),
  22. 'value' => 'your secret',
  23. 'rule' => 'required',
  24. 'msg' => '',
  25. 'tip' => '',
  26. 'ok' => '',
  27. 'extend' => '',
  28. ),
  29. array(
  30. 'name' => 'sign',
  31. 'title' => '签名',
  32. 'type' => 'string',
  33. 'content' =>
  34. array(),
  35. 'value' => 'your sign',
  36. 'rule' => 'required',
  37. 'msg' => '',
  38. 'tip' => '',
  39. 'ok' => '',
  40. 'extend' => '',
  41. ),
  42. array(
  43. 'name' => 'template',
  44. 'title' => '短信模板',
  45. 'type' => 'array',
  46. 'content' =>
  47. array(),
  48. 'value' =>
  49. array(
  50. 'register' => 'SMS_114000000',
  51. 'resetpwd' => 'SMS_114000000',
  52. 'changepwd' => 'SMS_114000000',
  53. 'changemobile' => 'SMS_114000000',
  54. 'profile' => 'SMS_114000000',
  55. ),
  56. 'rule' => 'required',
  57. 'msg' => '',
  58. 'tip' => '',
  59. 'ok' => '',
  60. 'extend' => '',
  61. ),
  62. array(
  63. 'name' => '__tips__',
  64. 'title' => '温馨提示',
  65. 'type' => 'string',
  66. 'content' =>
  67. array(),
  68. 'value' => '应用key和密钥你可以通过 https://ak-console.aliyun.com/?spm=a2c4g.11186623.2.13.fd315777PX3tjy#/accesskey 获取',
  69. 'rule' => 'required',
  70. 'msg' => '',
  71. 'tip' => '',
  72. 'ok' => '',
  73. 'extend' => '',
  74. ),
  75. );