截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ShopAdEnum.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. class ShopAdEnum
  21. {
  22. // 移动端
  23. const TERMINAL_MOBILE = 1;
  24. // PC端
  25. const TERMINAL_PC = 2;
  26. // 位置 店铺主页
  27. const PLACE_SHOP_HOME = 1;
  28. static function getPlaceDesc($from = true)
  29. {
  30. $desc = [
  31. self::PLACE_SHOP_HOME => '店铺主页',
  32. ];
  33. return $from === true ? $desc : ($desc[$from] ?? '');
  34. }
  35. static function getTerminal($from = true)
  36. {
  37. $desc = [
  38. self::TERMINAL_MOBILE => '移动端',
  39. self::TERMINAL_PC => 'PC端',
  40. ];
  41. return $from === true ? $desc : ($desc[$from] ?? '');
  42. }
  43. static function getLinkPage(): array
  44. {
  45. return [
  46. // [
  47. // 'name' => '店铺信息',
  48. // 'list' => [
  49. // [
  50. // 'name' => '店铺页面',
  51. // 'type' => 'shop',
  52. // ],
  53. // ],
  54. // ],
  55. [
  56. 'name' => '商品信息',
  57. 'list' => [
  58. [
  59. 'name' => '商品列表',
  60. 'type' => 'goods',
  61. ],
  62. // [
  63. // 'name' => '商品分类',
  64. // 'type' => 'goods_category',
  65. // ],
  66. ],
  67. ],
  68. ];
  69. }
  70. static function getShopLinkPaths(): array
  71. {
  72. return [
  73. [
  74. 'name' => '店铺首页',
  75. 'path' => '/pages/store_index/store_index',
  76. ],
  77. [
  78. 'name' => '店铺信息',
  79. 'path' => '/pages/store_detail/store_detail',
  80. ],
  81. ];
  82. }
  83. static function getShopGoodsListPath(): string
  84. {
  85. return '/pages/goods_details/goods_details';
  86. }
  87. static function getShopGoodsCategoryPath(): string
  88. {
  89. return '/pages/store_index/store_index';
  90. }
  91. }