君山 发表于 2020-11-9 17:22:55

Discuz notification_add函数 通知函数


/**
* 通知
* @param Integer $touid: 通知给谁
* @param String $type: 通知类型
* @param String $note: 语言key
* @param Array $notevars: 语言变量对应的值
* @param Integer $system: 是否为系统通知 0:非系统通知; 1:系统通知
*/
function notification_add($touid, $type, $note, $notevars = array(), $system = 0) {
        return helper_notification::notification_add($touid, $type, $note, $notevars, $system);
}
页: [1]
查看完整版本: Discuz notification_add函数 通知函数