WchatShareConfig.php 661 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 上海牛之云网络科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\bale\event;
  11. use addon\bale\model\share\WchatShare as ShareModel;
  12. /**
  13. * 获取分享配置
  14. */
  15. class WchatShareConfig
  16. {
  17. public function handle($param)
  18. {
  19. $share_model = new ShareModel();
  20. return $share_model->getShareConfig($param);
  21. }
  22. }