contact.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. $status = array
  3. (
  4. 1 => 'No',
  5. 2 => 'Yes',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'contact',
  11. # 显示给用户看的名称
  12. 'lang' => '联系信息',
  13. 'order' => 100,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'list' => true,
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-32',
  29. 'name' => 'Name',
  30. 'default' => '',
  31. 'desc' => 'Name',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'email' => array
  38. (
  39. 'type' => 'varchar-32',
  40. 'name' => 'Email',
  41. 'default' => '',
  42. 'desc' => 'Email',
  43. 'match' => Dever::rule('email'),
  44. 'update' => 'text',
  45. 'search' => 'fulltext',
  46. 'list' => true,
  47. ),
  48. 'message' => array
  49. (
  50. 'type' => 'text-500',
  51. 'name' => 'Message',
  52. 'default' => '',
  53. 'desc' => 'Message',
  54. 'match' => 'is_string',
  55. 'update' => 'textarea',
  56. 'search' => 'fulltext',
  57. 'list' => true,
  58. ),
  59. 'status' => array
  60. (
  61. 'type' => 'tinyint-1',
  62. 'name' => 'Status',
  63. 'default' => '',
  64. 'desc' => 'Status',
  65. 'match' => 'is_numeric',
  66. 'update' => 'radio',
  67. 'search' => 'select',
  68. 'option' => $status,
  69. 'list' => true,
  70. 'edit' => true,
  71. ),
  72. 'state' => array
  73. (
  74. 'type' => 'tinyint-1',
  75. 'name' => '状态',
  76. 'default' => '1',
  77. 'desc' => '请选择状态',
  78. 'match' => 'is_numeric',
  79. ),
  80. 'cdate' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => 'Date',
  84. 'match' => array('is_numeric', time()),
  85. 'desc' => '',
  86. # 只有insert时才生效
  87. 'search' => 'date',
  88. 'insert' => true,
  89. 'list' => 'date("Y-m-d H:i", {cdate})',
  90. ),
  91. ),
  92. 'manage' => array
  93. (
  94. 'insert' => false,
  95. 'edit' => false,
  96. 'delete' => false,
  97. ),
  98. );