info.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. $link = function()
  3. {
  4. $array = array();
  5. $info = Dever::db('source/link')->state();
  6. if($info)
  7. {
  8. $array += $info;
  9. }
  10. return $array;
  11. };
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'info',
  16. # 显示给用户看的名称
  17. 'lang' => '渠道管理',
  18. 'order' => 10,
  19. # 数据结构
  20. 'struct' => array
  21. (
  22. 'id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => 'ID',
  26. 'default' => '',
  27. 'desc' => '',
  28. 'match' => 'is_numeric',
  29. ),
  30. 'name' => array
  31. (
  32. 'type' => 'varchar-80',
  33. 'name' => '名称',
  34. 'default' => '',
  35. 'desc' => '请输入名称',
  36. 'match' => 'is_string',
  37. 'update' => 'text',
  38. 'search' => 'fulltext',
  39. 'list' => true,
  40. ),
  41. 'link_id' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '推广链接',
  45. 'default' => '1',
  46. 'desc' => '推广链接',
  47. 'match' => 'is_numeric',
  48. 'update' => 'select',
  49. 'option' => $link,
  50. 'search' => 'select',
  51. 'list' => true,
  52. ),
  53. 'code' => array
  54. (
  55. 'type' => 'varchar-200',
  56. 'name' => '渠道二维码',
  57. 'default' => '',
  58. 'desc' => '渠道二维码',
  59. 'match' => 'is_string',
  60. 'update' => 'textarea',
  61. 'list' => 'Dever::load("source/lib/manage.show", "{id}")',
  62. ),
  63. 'state' => array
  64. (
  65. 'type' => 'tinyint-1',
  66. 'name' => '状态',
  67. 'default' => '1',
  68. 'desc' => '请选择状态',
  69. 'match' => 'is_numeric',
  70. ),
  71. 'cdate' => array
  72. (
  73. 'type' => 'int-11',
  74. 'name' => '录入时间',
  75. 'match' => array('is_numeric', time()),
  76. 'desc' => '',
  77. # 只有insert时才生效
  78. 'insert' => true,
  79. ),
  80. ),
  81. 'manage' => array
  82. (
  83. 'delete' => false,
  84. 'edit' => false,
  85. # 列表
  86. 'list_button' => array
  87. (
  88. 'list' => array('渠道统计', '"stat&search_option_info_id={id}&oper_parent=info"'),
  89. ),
  90. ),
  91. );