PointRule.php 988 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\memberregister\event;
  11. use addon\memberregister\model\Register;
  12. /**
  13. * 积分规则
  14. */
  15. class PointRule
  16. {
  17. public function handle($data)
  18. {
  19. $config = new Register();
  20. $info = $config->getConfig($data['site_id'])['data'];
  21. $data = [
  22. 'title' => '会员注册奖励',
  23. 'content' => !$info['is_use'] || !$info['value']['point'] ? '-' : "会员注册,赠送" . $info['value']['point'] . "积分",
  24. 'url' => 'memberregister://shop/config/index',
  25. 'update_time' => $info['modify_time']
  26. ];
  27. return $data;
  28. }
  29. }