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/ilovecveti.ru/bitrix/modules/socialnetwork/lib/integration/main/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage socialnetwork * @copyright 2001-2017 Bitrix */ namespace Bitrix\Socialnetwork\Integration\Main; use Bitrix\Socialnetwork\Livefeed\Provider; use Bitrix\Main\Event; use Bitrix\Main\EventResult; use Bitrix\Socialnetwork\LogCommentTable; class RatingVote { public static function onGetRatingContentOwner($params) { if(intval($params['ENTITY_ID']) && $params['ENTITY_TYPE_ID'] == 'LOG_COMMENT') { $res = LogCommentTable::getList(array( 'filter' => array( 'ID' => $params['ENTITY_ID'] ), 'select' => array('USER_ID') )); if ( ($logCommentFields = $res->fetch()) && intval($logCommentFields['USER_ID']) > 0 ) { return intval($logCommentFields['USER_ID']); } } return false; } }