Database.php
1012 字节
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
<?php
namespace addons\groupon\library\notify\channel;
use addons\groupon\notifications\Notification;
use addons\groupon\model\Notification as NotificationModel;
class Database
{
public function __construct()
{
}
/**
* 发送 模板消息
*
* @param mixed $notifiable // 通知用户
* @param 通知内容
* @return void
*/
public function send($notifiable, Notification $notification)
{
$data = [];
if (method_exists($notification, 'toDatabase')) {
$data = $notification->toDatabase($notifiable);
$notificationModel = new NotificationModel();
$notificationModel->type = $notification->event;
$notificationModel->notifiable_id = $notifiable['id'];
$notificationModel->notifiable_type = $notification->notifiableType;
$notificationModel->data = json_encode($data);
$notificationModel->save();
}
return true;
}
}