email.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. $config = array
  3. (
  4. # 表名
  5. 'name' => 'email',
  6. # 显示给用户看的名称
  7. 'lang' => '邮件列表',
  8. 'order' => -10,
  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. //'list' => true,
  20. ),
  21. 'name' => array
  22. (
  23. 'type' => 'varchar-100',
  24. 'name' => '用户名称',
  25. 'default' => '',
  26. 'desc' => '用户名称',
  27. 'match' => 'is_string',
  28. 'update' => 'text',
  29. 'list' => true,
  30. ),
  31. 'email' => array
  32. (
  33. 'type' => 'varchar-150',
  34. 'name' => '邮箱',
  35. 'default' => '',
  36. 'desc' => '请输入邮箱',
  37. 'match' => 'option||' . Dever::rule('email'),
  38. 'update' => 'text',
  39. 'list' => true,
  40. ),
  41. 'state' => array
  42. (
  43. 'type' => 'tinyint-1',
  44. 'name' => '数据状态',
  45. 'default' => '1',
  46. 'desc' => '请选择状态',
  47. 'match' => 'is_numeric',
  48. ),
  49. 'cdate' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '发布时间',
  53. 'match' => array('is_numeric', time()),
  54. 'desc' => '',
  55. # 只有insert时才生效
  56. 'insert' => true,
  57. //'search' => 'date',
  58. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  59. ),
  60. ),
  61. 'manage' => array
  62. (
  63. // 'insert' => false,
  64. // 'edit' => false,
  65. // 'delete' => false,
  66. // 'num' => false,
  67. // 'excel' => $excel,
  68. // 'button' => $button,
  69. ),
  70. # request 请求接口定义
  71. 'request' => array
  72. (
  73. // 'getExcelAll' => array
  74. // (
  75. // # 匹配的正则或函数 选填项
  76. // 'option' => array
  77. // (
  78. // 'start' => array('yes-month', '>='),
  79. // 'end' => array('yes-month', '<='),
  80. // 'state' => 1,
  81. // ),
  82. // 'type' => 'all',
  83. // 'col' => '*',
  84. // ),
  85. ),
  86. );
  87. return $config;