moment.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. $status = Dever::config('base')->status;
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'moment',
  7. # 显示给用户看的名称
  8. 'lang' => '朋友圈',
  9. 'order' => 100,
  10. 'menu' => false,
  11. 'end' => array
  12. (
  13. 'insert' => 'collection/lib/content.updateTypeId',
  14. 'update' => 'collection/lib/content.updateTypeId',
  15. ),
  16. # 数据结构
  17. 'struct' => array
  18. (
  19. 'id' => array
  20. (
  21. 'type' => 'int-11',
  22. 'name' => 'ID',
  23. 'default' => '',
  24. 'desc' => '',
  25. 'match' => 'is_numeric',
  26. 'list' => true,
  27. ),
  28. 'info_id' => array
  29. (
  30. 'type' => 'int-11',
  31. 'name' => '合集',
  32. 'default' => '',
  33. 'desc' => '合集',
  34. 'match' => 'is_numeric',
  35. 'update' => 'hidden',
  36. 'value' => Dever::input('search_option_info_id')
  37. ),
  38. 'content_id' => array
  39. (
  40. 'type' => 'int-11',
  41. 'name' => '合集内容id',
  42. 'default' => '',
  43. 'desc' => '合集内容id',
  44. 'match' => 'is_numeric',
  45. 'update' => 'hidden',
  46. 'value' => Dever::input('search_option_content_id')
  47. ),
  48. 'name' => array
  49. (
  50. 'type' => 'varchar-80',
  51. 'name' => '朋友圈标题',
  52. 'default' => '',
  53. 'desc' => '标题',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. 'list' => true,
  57. 'search' => 'fulltext',
  58. //增加预览
  59. 'preview' => true,
  60. ),
  61. 'logo' => array
  62. (
  63. 'type' => 'varchar-150',
  64. 'name' => '朋友圈logo-图片尺寸380*380px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  65. 'default' => '',
  66. 'desc' => '朋友圈logo',
  67. 'match' => 'is_string',
  68. 'update' => 'image',
  69. 'key' => '1',
  70. 'place' => '380',
  71. ),
  72. 'pic' => array
  73. (
  74. 'type' => 'varchar-150',
  75. 'name' => '封面图-图片尺寸375*281px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  76. 'default' => '',
  77. 'desc' => '封面图',
  78. 'match' => 'is_string',
  79. 'update' => 'image',
  80. 'key' => '1',
  81. 'place' => '375*281',
  82. ),
  83. 'content' => array
  84. (
  85. 'type' => 'text-255',
  86. 'name' => '内容介绍',
  87. 'default' => '',
  88. 'desc' => '请输入内容',
  89. 'match' => 'is_string',
  90. 'update' => 'editor',
  91. 'key' => '1',
  92. ),
  93. 'status' => array
  94. (
  95. 'type' => 'int-11',
  96. 'name' => '发布状态',
  97. 'default' => '1',
  98. 'desc' => '发布状态',
  99. 'match' => 'is_numeric',
  100. //'update' => 'select',
  101. 'option' => $status,
  102. 'search' => 'select',
  103. 'list' => true,
  104. 'edit' => true,
  105. ),
  106. 'reorder' => array
  107. (
  108. 'type' => 'int-11',
  109. 'name' => '排序(数值越大越靠前)',
  110. 'default' => '1',
  111. 'desc' => '请输入排序',
  112. 'match' => 'option',
  113. //'update' => 'text',
  114. 'search' => 'order',
  115. 'list' => true,
  116. 'order' => 'desc',
  117. 'edit' => true,
  118. ),
  119. 'state' => array
  120. (
  121. 'type' => 'tinyint-1',
  122. 'name' => '状态',
  123. 'default' => '1',
  124. 'desc' => '请选择状态',
  125. 'match' => 'is_numeric',
  126. ),
  127. 'cdate' => array
  128. (
  129. 'type' => 'int-11',
  130. 'name' => '录入时间',
  131. 'match' => array('is_numeric', time()),
  132. 'desc' => '',
  133. # 只有insert时才生效
  134. 'insert' => true,
  135. ),
  136. ),
  137. # 管理功能
  138. 'manage' => array
  139. (
  140. ),
  141. # request 请求接口定义
  142. 'request' => array
  143. (
  144. ),
  145. );