Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/socialnetwork/lib/item/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage socialnetwork * @copyright 2001-2018 Bitrix */ namespace Bitrix\Socialnetwork\Item; use Bitrix\Socialnetwork\LogSubscribeTable; use Bitrix\Socialnetwork\LogCommentTable; use Bitrix\Main\Loader; class LogSubscribe { public static function sendPush($params = array()) { if (!Loader::includeModule('pull')) { return false; } $logId = (isset($params['logId']) ? intval($params['logId']) : 0); $commentId = (isset($params['commentId']) ? intval($params['commentId']) : 0); if ( $logId <= 0 && $commentId > 0 ) { $res = LogCommentTable::getList(array( 'filter' => array( '=ID' => $commentId ), 'select' => array('LOG_ID') )); if ($logCommentFields = $res->fetch()) { $logId = $logCommentFields['LOG_ID']; } } if ($logId <= 0) { return false; } $res = LogSubscribeTable::getList(array( 'filter' => array( '=LOG_ID' => $logId, '=TYPE' => LogSubscribeTable::TYPE_COUNTER_COMMENT_PUSH ), 'select' => array('USER_ID') )); while($subscribeFields = $res->fetch()) { \Bitrix\Pull\MobileCounter::send($subscribeFields['USER_ID']); } } }