DISCUZ メンバーに通知するようにグループ投稿システムを変更します notification_add 通知プロンプト関数を送信します notification
notification_add($touid, $type, $note, $notevars = array(), $system = 0)
$toid : 誰に送信しますか?
$type: 一般的に使用されるメソッド?
$note: コンテンツは自分で編集できます
$notevars = いくつかのコンテンツパラメータ
デフォルトでは $system = 0
souse/class/module/module_forum_thread.php ファイルの 139 行目に次のコードを追加します。
if($this->param['isgroup']==1){
$bt=$this->param['件名'];
$querys = DB::fetch_all('select * from pre_forum_groupuser where
fid='.$this->フォーラム['fid']);
foreach($querys
$arr として){
Notice_add($arr['uid'],
'システム', $author.' 公開: '.$bt, array('from_id' => 0,
'from_idtype' => 'sendnotice'), 1);
}
}
実装の効果: グループのメンバーがグループにメッセージを投稿すると、グループのすべてのメンバーがシステム リマインダーを受け取り、システム リマインダーの入力を求められます。
author:Beyond 質問がある場合は、グループに参加してください
http://www.bkjia.com/PHPjc/935347.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/935347.html技術記事 DISCUZ メンバーに通知するようにグループ投稿システムを変更します notification_add 通知プロンプト関数を送信する、 notification notification_add($touid, $type, $note, $notevars = array(), $system = 0)$touid...