mobile_upload.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'mobile_upload',
  6. # 显示给用户看的名称
  7. 'lang' => '导入用户',
  8. 'order' => 1,
  9. 'menu' => false,
  10. 'end' => array
  11. (
  12. 'update' => 'journal/lib/manage.mobileImport',
  13. 'insert' => 'journal/lib/manage.mobileImport',
  14. ),
  15. # 数据结构
  16. 'struct' => array
  17. (
  18. 'id' => array
  19. (
  20. 'type' => 'int-11',
  21. 'name' => '系统ID',
  22. 'default' => '',
  23. 'desc' => '',
  24. 'match' => 'is_numeric',
  25. 'value' => Dever::input('where_id'),
  26. ),
  27. 'file' => array
  28. (
  29. 'type' => 'varchar-150',
  30. 'name' => '导入用户-请先下载模板',
  31. 'default' => '',
  32. 'desc' => '导入用户',
  33. 'match' => 'is_string',
  34. 'update' => 'upload',
  35. 'key' => '4',
  36. 'value' => '',
  37. ),
  38. 'cdate' => array
  39. (
  40. 'type' => 'int-11',
  41. 'name' => '录入时间',
  42. 'match' => array('is_numeric', time()),
  43. 'desc' => '',
  44. # 只有insert时才生效
  45. 'insert' => true,
  46. ),
  47. ),
  48. 'manage' => array
  49. (
  50. # 后台管理不要列表页
  51. 'list' => 'update',
  52. ),
  53. );