コード例 #1
0
ファイル: Notice.php プロジェクト: a780201/gnu-social
 function clearGroupInboxes()
 {
     $gi = new Group_inbox();
     $gi->notice_id = $this->id;
     if ($gi->find()) {
         while ($gi->fetch()) {
             self::blow('user_group:notice_ids:%d', $gi->group_id);
             $gi->delete();
         }
     }
     $gi->free();
 }