init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
26
addons/shopro/library/notify/traits/Notifiable.php
Normal file
26
addons/shopro/library/notify/traits/Notifiable.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace addons\shopro\library\notify\traits;
|
||||
|
||||
/**
|
||||
* 消息通知 trait
|
||||
*/
|
||||
|
||||
trait Notifiable
|
||||
{
|
||||
public function notify ($notification) {
|
||||
return \addons\shopro\library\notify\Notify::send([$this], $notification);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取 notifiable 身份类型 admin, user
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function getNotifiableType()
|
||||
{
|
||||
$notifiable_type = str_replace('\\', '', strtolower(strrchr(static::class, '\\')));
|
||||
return $notifiable_type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user