base.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'base',
  6. # 显示给用户看的名称
  7. 'lang' => '商学院系统配置',
  8. 'order' => 1,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => '平台ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. ),
  20. 'name' => array
  21. (
  22. 'type' => 'varchar-32',
  23. 'name' => '系统名称',
  24. 'default' => '',
  25. 'desc' => '请输入系统名称',
  26. 'match' => 'is_string',
  27. 'update' => 'text',
  28. ),
  29. 'phone' => array
  30. (
  31. 'type' => 'varchar-100',
  32. 'name' => '客服电话',
  33. 'default' => '',
  34. 'desc' => '请输入客服电话',
  35. 'match' => 'option',
  36. 'update' => 'text',
  37. ),
  38. 'avatar' => array
  39. (
  40. 'type' => 'varchar-150',
  41. 'name' => '默认头像',
  42. 'default' => '',
  43. 'desc' => '请选择头像',
  44. 'match' => 'is_string',
  45. 'update' => 'image',
  46. 'key' => '1',
  47. //'place' => '150',
  48. ),
  49. 'state' => array
  50. (
  51. 'type' => 'tinyint-1',
  52. 'name' => '状态',
  53. 'default' => '1',
  54. 'desc' => '请选择状态',
  55. 'match' => 'is_numeric',
  56. ),
  57. 'cdate' => array
  58. (
  59. 'type' => 'int-11',
  60. 'name' => '录入时间',
  61. 'match' => array('is_numeric', time()),
  62. 'desc' => '',
  63. # 只有insert时才生效
  64. 'insert' => true,
  65. ),
  66. ),
  67. 'default' => array
  68. (
  69. 'col' => 'name,cdate',
  70. 'value' => array
  71. (
  72. '"商学院",' . time(),
  73. ),
  74. ),
  75. 'manage' => array
  76. (
  77. # 后台管理不要列表页
  78. 'list' => 'update',
  79. ),
  80. );