2

最近发布的 SuiteCRM 7.3 能够在网站上显示桌面通知和通知(在标题中)。

如何通过代码添加或触发我自己的自定义通知?

4

2 回答 2

4

我尚未对此进行测试,但您应该能够简单地保存一个新的 Alert bean。

IE

$alert = BeanFactory::newBean('Alerts');
$alert->name = 'My Alert';
$alert->description = 'This is my alert!';
$alert->url_redirect = 'index.php';
$alert->target_module = 'Accounts';
$alert->assigned_user_id = '1';
$alert->type = 'info';
$alert->is_read = 0;
$alert->save();

中的action_add方法modules/Alerts/controller.php提供了一个示例。

于 2015-08-18T09:09:42.903 回答
2

您可以在使用 Logic Hooks 保存潜在客户记录后为用户创建警报示例

在文件中custom\modules\Leads\logic_hooks.php添加以下字符串:

$hook_array['after_save'][] = Array(2, 'send alert to user', 'custom/modules/Leads/LogicHooks/SendAlert.php','LeadHooks', 'sendAlert'); 

下一步,在其中创建一个文件夹和文件,LogicHooks\SendAlert.phpcustom\modules\Leads\LogicHooks\SendAlert.php添加这个类:

class LeadHooks{
    public function sendAlert($bean,$events,$arguments){
        $seedAlert = new Alert();
        $seedAlert->name = "New Lead";
        $seedAlert->description = "Lead assigned to yu";
        $seedAlert->assigned_user_id = $bean->fetched_row['assigned_user_id'];
        $seedAlert->is_read = 0 ;
        $seedAlert->type = "info" ;
        $seedAlert->target_module = "Leads";
        $seedAlert->url_redirect = "index.php?action=DetailView&module=Leads&record=".$bean>fetched_row['id']."&return_module=Leads&return_action=DetailView";
        $seedAlert->save();
    }
}

其余模块的全部内容,您应该这样做。

于 2017-09-01T14:37:24.903 回答