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 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:超越 有問題請加群