notification_add($touid, $type, $note, $notevars = array(), $system = 0)
$touid : 寄給誰?
$type : 方式? 常用的是post
$note : 可以自己編輯內容
$notevars = 一些內容參數
$system = 預設為0
將下列程式碼加入souse/class/module/module_forum_thread.php檔案第139行即可
if($this->param['isgroup']==1){
$bt=$this->param['subject'];
$querys = DB::fetch_all('select * from pre_forum_groupuser where
fid='.$this->forum['fid']);
foreach($querys
as $arr){
notification_add($arr['uid'],
'system', $author.'發表了:'.$bt, array('from_id' => 0,
'from_idtype' => 'sendnotice'), 1);
}
}
實現效果:群組內任一成員在群組裡面發帖子,群組所有成員就會收到系統提醒,並且提示有系統提醒。
author:超越 有問題請加群
以上就介紹了DISCUZ 更改群組發文系統提醒成員 notification_add 發送通知提示函數,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。