コード例 #1
0
ファイル: QvitterPlugin.php プロジェクト: GreenLunar/qvitter
 public function onEndUnsubscribe($subscriber, $other)
 {
     if (!Subscription::exists($subscriber, $other)) {
         $notif = new QvitterNotification();
         $notif->to_profile_id = $other->id;
         $notif->from_profile_id = $subscriber->id;
         $notif->ntype = 'follow';
         $notif->delete();
     }
     return true;
 }