ShowPromotion.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace addon\cashier\event;
  13. /**
  14. * 活动展示
  15. */
  16. class ShowPromotion
  17. {
  18. /**
  19. * 活动展示
  20. * @return array
  21. */
  22. public function handle()
  23. {
  24. $data = [
  25. 'shop' => [
  26. [
  27. //插件名称
  28. 'name' => 'cashier',
  29. //店铺端展示分类 shop:营销活动 member:互动营销
  30. 'show_type' => 'tool',
  31. //展示主题
  32. 'title' => '收银台',
  33. //展示介绍
  34. 'description' => '收银台',
  35. //展示图标
  36. 'icon' => 'addon/cashier/icon.png',
  37. //跳转链接
  38. 'url' => 'cashier://shop/index/cashier',
  39. ]
  40. ]
  41. ];
  42. return $data;
  43. }
  44. }