info_price.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. $config = array
  3. (
  4. # 表名
  5. 'name' => 'info_price',
  6. # 显示给用户看的名称
  7. 'lang' => '资源价格',
  8. 'order' => 200,
  9. 'menu' => false,
  10. 'auto' => 10000000,
  11. # 数据结构 不同的字段放这里
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. //'list' => true,
  22. ),
  23. 'name' => array
  24. (
  25. 'type' => 'varchar-800',
  26. 'name' => '标题',
  27. 'default' => '',
  28. 'desc' => '标题',
  29. 'match' => 'is_string',
  30. 'update' => 'textarea',
  31. 'search' => 'fulltext',
  32. //'list' => true,
  33. //'edit' => true,
  34. ),
  35. 'reorder' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '排序-数值越大越靠前,相当于置顶',
  39. 'default' => '1',
  40. 'desc' => '请输入排序',
  41. 'match' => 'option',
  42. //'update' => 'text',
  43. 'search' => 'order',
  44. 'list' => true,
  45. 'order' => 'desc',
  46. 'edit' => true,
  47. ),
  48. 'state' => array
  49. (
  50. 'type' => 'tinyint-1',
  51. 'name' => '数据状态',
  52. 'default' => '1',
  53. 'desc' => '请选择状态',
  54. 'match' => 'is_numeric',
  55. ),
  56. 'cdate' => array
  57. (
  58. 'type' => 'int-11',
  59. 'name' => '发布时间',
  60. 'match' => array('is_numeric', time()),
  61. 'desc' => '',
  62. # 只有insert时才生效
  63. 'insert' => true,
  64. 'search' => 'date',
  65. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  66. ),
  67. ),
  68. );
  69. return $config;