contact.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. $type = array
  3. (
  4. 1 => '链接',
  5. 2 => '推送位',
  6. 3 => '新闻',
  7. 4 => '业务',
  8. 5 => '案例',
  9. );
  10. return array
  11. (
  12. # 表名
  13. 'name' => 'contact',
  14. # 显示给用户看的名称
  15. 'lang' => '联系我们',
  16. 'order' => -8,
  17. # 数据结构
  18. 'struct' => array
  19. (
  20. 'id' => array
  21. (
  22. 'type' => 'int-11',
  23. 'name' => 'ID',
  24. 'default' => '',
  25. 'desc' => '',
  26. 'match' => 'is_numeric',
  27. 'list' => true,
  28. ),
  29. 'name' => array
  30. (
  31. 'type' => 'varchar-120',
  32. 'name' => '姓名',
  33. 'default' => '',
  34. 'desc' => '姓名',
  35. 'match' => 'is_string',
  36. 'search' => 'fulltext',
  37. 'update' => 'text',
  38. 'list' => true,
  39. ),
  40. 'address' => array
  41. (
  42. 'type' => 'varchar-500',
  43. 'name' => '地址',
  44. 'default' => '',
  45. 'desc' => '地址',
  46. 'match' => 'is_string',
  47. 'update' => 'textare',
  48. 'list' => true,
  49. ),
  50. 'mobile' => array
  51. (
  52. 'type' => 'varchar-120',
  53. 'name' => '电话',
  54. 'default' => '',
  55. 'desc' => '电话',
  56. 'match' => 'is_string',
  57. 'update' => 'text',
  58. 'list' => true,
  59. ),
  60. 'email' => array
  61. (
  62. 'type' => 'varchar-120',
  63. 'name' => '电子邮箱',
  64. 'default' => '',
  65. 'desc' => '电子邮箱',
  66. 'match' => 'is_string',
  67. 'update' => 'text',
  68. 'list' => true,
  69. ),
  70. 'state' => array
  71. (
  72. 'type' => 'tinyint-1',
  73. 'name' => '状态',
  74. 'default' => '1',
  75. 'desc' => '请选择状态',
  76. 'match' => 'is_numeric',
  77. ),
  78. 'cdate' => array
  79. (
  80. 'type' => 'int-11',
  81. 'name' => '录入时间',
  82. 'match' => array('is_numeric', time()),
  83. 'desc' => '',
  84. # 只有insert时才生效
  85. 'insert' => true,
  86. 'list' => 'date("Y-m-d H:i", {cdate})',
  87. ),
  88. ),
  89. 'manage' => array
  90. (
  91. 'lang' => 'name,address',
  92. ),
  93. );