>  기사  >  백엔드 개발  >  DISCUZ 更改群组发帖系统提醒成员 notification_add 发送通知提示函数,notification_PHP教程

DISCUZ 更改群组发帖系统提醒成员 notification_add 发送通知提示函数,notification_PHP教程

WBOY
WBOY원래의
2016-07-13 10:10:34980검색

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:超越 有问题请加群

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/935347.htmlTechArticleDISCUZ 更改群组发帖系统提醒成员 notification_add 发送通知提示函数,notification notification_add($touid, $type, $note, $notevars = array(), $system = 0)$touid...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.