config.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * 配置表
  4. */
  5. return array
  6. (
  7. # 表名
  8. 'name' => 'config',
  9. # 显示给用户看的名称
  10. 'lang' => '阿里云配置',
  11. 'order' => 1,
  12. 'menu' => false,
  13. # 数据结构
  14. 'struct' => array
  15. (
  16. 'id' => array
  17. (
  18. 'type' => 'int-11',
  19. 'name' => '配置ID',
  20. 'default' => '',
  21. 'desc' => '',
  22. 'match' => 'is_numeric',
  23. 'search' => 'order',
  24. 'list' => true,
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-24',
  29. 'name' => '配置名',
  30. 'default' => '',
  31. 'desc' => '请输入配置名',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'appkey' => array
  38. (
  39. 'type' => 'varchar-80',
  40. 'name' => 'appkey',
  41. 'default' => '',
  42. 'desc' => 'appkey',
  43. 'match' => 'is_string',
  44. 'update' => 'text',
  45. 'search' => 'fulltext',
  46. 'list' => true,
  47. ),
  48. 'appsecret' => array
  49. (
  50. 'type' => 'varchar-200',
  51. 'name' => 'appsecret',
  52. 'default' => '',
  53. 'desc' => 'appsecret',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. 'search' => 'fulltext',
  57. 'list' => true,
  58. ),
  59. 'state' => array
  60. (
  61. 'type' => 'tinyint-1',
  62. 'name' => '状态',
  63. 'default' => '1',
  64. 'desc' => '请选择状态',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'cdate' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '录入时间',
  71. 'match' => array('is_numeric', time()),
  72. 'desc' => '',
  73. # 只有insert时才生效
  74. 'insert' => true,
  75. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. 'manage' => array
  79. (
  80. ),
  81. );