PATH:
home
/
lab2454c
/
keebchat.com
/
core
/
apps
/
notifications
/
sql
/* @*************************************************************************@ @ @author Mansur Altamirov (Mansur_TL) @ @ @author_url 1: https://www.instagram.com/mansur_tl @ @ @author_url 2: http://codecanyon.net/user/mansur_tl @ @ @author_email: highexpresstore@gmail.com @ @*************************************************************************@ @ ColibriSM - The Ultimate Modern Social Media Sharing Platform @ @ Copyright (c) 21.03.2020 ColibriSM. All rights reserved. @ @*************************************************************************@ */ SELECT COUNT(*) AS total FROM `<?php echo($data['t_notifs']); ?>` WHERE `recipient_id` = <?php echo($data['user_id']); ?> <?php if($data['type'] == "notifs"): ?> AND `subject` IN ('reply','subscribe', 'like', 'repost', 'verified', 'visit', 'subscribe_request', 'subscribe_accept', 'ad_approval') <?php else: ?> AND `subject` = 'mention' <?php endif; ?> AND `notifier_id` NOT IN (SELECT b.`profile_id` FROM `<?php echo($data['t_blocks']); ?>` b WHERE b.`user_id` = <?php echo($data['user_id']); ?>)
[+]
..
[-] fetch_total.sql
[edit]
[-] fetch_unseen_total.sql
[edit]
[-] fetch_notifications.sql
[edit]