DISCUZ 更改群組發帖系統提醒成員 notification_add 發送通知提示函數,notification
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 wherefid='.$this->forum['fid']);
foreach($querysas $arr){
notification_add($arr['uid'],'system', $author.'發表了:'.$bt, array('from_id' => 0,'from_idtype' => 'sendnotice'), 1);
}
} 實現效果:群組內任意一成員在群組裡面發文章,群組所有成員就會收到系統提醒,並且提示有系統提醒。 author:超越 有問題請加群
http://www.bkjia.com/PHPjc/935347.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/935347.htmlTechArticleDISCUZ 更改群組發帖系統提醒成員 notification_add 發送通知提示函數,notification notification_add($touid, $type, $note, $notevars = array(), $system = 0)$touid...