link.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'link',
  6. # 显示给用户看的名称
  7. 'lang' => '长链转短链',
  8. 'order' => 14,
  9. 'end' => array
  10. (
  11. # 生成短链接
  12. 'insert' => 'weixin/code.link',
  13. # 生成短链接
  14. 'update' => 'weixin/code.link',
  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. //'search' => 'order',
  27. //'list' => true,
  28. ),
  29. 'site' => array
  30. (
  31. 'type' => 'int-11',
  32. 'name' => '站点',
  33. 'default' => '',
  34. 'desc' => '请输入站点',
  35. 'match' => 'is_numeric',
  36. ),
  37. 'name' => array
  38. (
  39. 'type' => 'varchar-32',
  40. 'name' => '链接描述',
  41. 'default' => '',
  42. 'desc' => '请输入链接描述',
  43. 'match' => 'is_string',
  44. 'update' => 'text',
  45. 'search' => 'order,fulltext',
  46. 'list' => true,
  47. ),
  48. 'url' => array
  49. (
  50. 'type' => 'varchar-255',
  51. 'name' => '链接地址',
  52. 'default' => '',
  53. 'desc' => '请输入链接地址',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. ),
  57. 'short_url' => array
  58. (
  59. 'type' => 'varchar-150',
  60. 'name' => '短链接',
  61. 'default' => '',
  62. 'desc' => '请输入短链接',
  63. 'match' => 'option',
  64. //'update' => 'text',
  65. 'list' => true,
  66. ),
  67. 'cdate' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '录入时间',
  71. 'match' => array('is_numeric', time()),
  72. 'desc' => '',
  73. # 只有insert时才生效
  74. 'insert' => true,
  75. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. 'auth' => 'site',
  79. 'manage' => array
  80. (
  81. 'desc' => '用于生成二维码的原链接(商品、支付二维码等)太长导致扫码速度和成功率下降,将原长链接通过此接口转成短链接再生成二维码将大大提升扫码速度和成功率。',
  82. ),
  83. );