程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> DISCUZ 更改群組發帖系統提醒成員 notification_add 發送通知提示函數,notification

DISCUZ 更改群組發帖系統提醒成員 notification_add 發送通知提示函數,notification

編輯:關於PHP編程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved