webview.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. $status = Dever::config('base')->status;
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'webview',
  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' => 'option',
  55. 'update' => 'text',
  56. 'list' => true,
  57. 'search' => 'fulltext',
  58. //增加预览
  59. 'preview' => true,
  60. ),
  61. 'desc' => array
  62. (
  63. 'type' => 'varchar-500',
  64. 'name' => '摘要-不填不显示',
  65. 'default' => '',
  66. 'desc' => '摘要',
  67. 'match' => 'option',
  68. 'update' => 'textarea',
  69. ),
  70. 'link' => array
  71. (
  72. 'type' => 'varchar-800',
  73. 'name' => '链接地址',
  74. 'default' => '',
  75. 'desc' => '链接地址',
  76. 'match' => 'is_string',
  77. 'update' => 'textarea',
  78. 'key' => '1',
  79. ),
  80. 'udate' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => '更新时间',
  84. 'match' => array('is_numeric', time()),
  85. 'desc' => '',
  86. ),
  87. 'status' => array
  88. (
  89. 'type' => 'int-11',
  90. 'name' => '发布状态',
  91. 'default' => '1',
  92. 'desc' => '发布状态',
  93. 'match' => 'is_numeric',
  94. //'update' => 'select',
  95. 'option' => $status,
  96. 'search' => 'select',
  97. 'list' => true,
  98. 'edit' => true,
  99. ),
  100. 'reorder' => array
  101. (
  102. 'type' => 'int-11',
  103. 'name' => '排序(数值越大越靠前)',
  104. 'default' => '1',
  105. 'desc' => '请输入排序',
  106. 'match' => 'option',
  107. //'update' => 'text',
  108. 'search' => 'order',
  109. 'list' => true,
  110. 'order' => 'desc',
  111. 'edit' => true,
  112. ),
  113. 'state' => array
  114. (
  115. 'type' => 'tinyint-1',
  116. 'name' => '状态',
  117. 'default' => '1',
  118. 'desc' => '请选择状态',
  119. 'match' => 'is_numeric',
  120. ),
  121. 'cdate' => array
  122. (
  123. 'type' => 'int-11',
  124. 'name' => '录入时间',
  125. 'match' => array('is_numeric', time()),
  126. 'desc' => '',
  127. # 只有insert时才生效
  128. 'insert' => true,
  129. ),
  130. ),
  131. # 管理功能
  132. 'manage' => array
  133. (
  134. ),
  135. # request 请求接口定义
  136. 'request' => array
  137. (
  138. ),
  139. );