MemberSigninAward.php 889 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\membersignin\event;
  11. use addon\membersignin\model\Signin as SigninModel;
  12. /**
  13. * 会员签到奖励规则
  14. */
  15. class MemberSigninAward
  16. {
  17. /**
  18. * 会员操作
  19. */
  20. public function handle($param)
  21. {
  22. $signin_model = new SigninModel();
  23. $config_result = $signin_model->getConfig($param['site_id'])['data'];
  24. if ($config_result['is_use']) {
  25. $config_result = $config_result['value'];
  26. return $config_result;
  27. }
  28. return [];
  29. }
  30. }