forked from qmpaas/leadshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module.php
58 lines (43 loc) · 2.12 KB
/
Module.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* @link https://www.leadshop.vip/
* @copyright Copyright ©2020-2021 浙江禾成云计算有限公司
*/
namespace leadmall;
use framework\common\BasicModule;
/**
* v2 module definition class
*/
class Module extends BasicModule
{
/**
* @inheritdoc
*/
public $controllerNamespace = 'leadmall';
/**
* @inheritdoc
*/
public function init()
{
parent::init();
}
public function eventList()
{
$this->on('check_order', ["\order\api\IndexController", 'checkOrder']); //订单检测
$this->on('check_evaluate', ["\order\api\EvaluateController", 'checkEvaluate']); //评价检测
$this->on('visit', ["\statistical\api\VisitController", 'saveLog']); //访客
$this->on('user_upload', ["\statistical\api\UploadController", 'saveLog']); //用户上传文件
$this->on('user_statistical', ["\users\app\IndexController", 'statistical']); //用户统计
$this->on('visit_goods', ["\statistical\api\GoodsVisitController", 'saveLog']); //浏览商品记录
$this->on('add_order', ["\goods\app\IndexController", 'reduceStocks']); //下单商品减库存
$this->on('add_order', ["\cart\app\IndexController", 'cartClear']); //下单清空对应购物车商品
$this->on('cancel_order', ["\goods\app\IndexController", 'addStocks']); //取消订单返还库存
$this->on('cancel_order', ["\coupon\api\IndexController", 'restoreUserCoupon']); //取消订单返还优惠券
$this->on('pay_order', ["\goods\app\IndexController", 'addSales']); //付款增加商品销售额
$this->on('pay_order', ["\coupon\api\IndexController", 'sendUserCoupon']); //下单发放优惠券
$this->on('pay_order', ["\users\api\LabellogController", 'giveLabel']); //付款判断用户是否有新的标签
$this->on('refunded', ["\coupon\api\IndexController", 'invalidateUserCoupon']); //退款后失效优惠券
$this->on('send_sms', ["\sms\app\IndexController", 'sendSms']); //发送短信
$this->on('user_register', ["\users\app\IndexController", 'register']); //用户注册事件
}
}