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/cvetdv.ru/bitrix/modules/burlakastudio.realcommenter/ajax/ |
Upload File : |
<?php use Bitrix\Main\Localization\Loc; use Burlakastudio\Realcommenter\COMMENTS; use Burlakastudio\Realcommenter\DEBUGGER; use Burlakastudio\Realcommenter\GRANT_AND_ACCESS; use Burlakastudio\Realcommenter\Sanctions; if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) { die(); } /** * ����� "��������� ����������� D7" ��� ������� * �������� ���� �����: www.realcommenter.com * �������� ���� �����������: burlaka.studio * ����� � ����������: ������� ������� (AlexeyGfi) -> alexeygfi@gmail.com */ /** * ���� ������ �� ����������/����� ������ * 1. ��� ����� ����� ����� ����� ��� �������� * 2. ���� �����������/�������- � ������������: * - (���������) ���� �� ��������� � ������� ��� (sanction_user_id); * - ���� �� ��� ���������� (� ���� ������ ������). */ if (GRANT_AND_ACCESS::is_any_moder($arParams)) { /** * @var array $commentInfo */ $sanctionUserId = htmlspecialchars($request->get('sanction_user_id')); if (!$sanctionUserId) { $commentId = (int)htmlspecialchars($posts['comment_id']); if ($commentId) { $commentInfo = COMMENTS::getCommentInfo($commentId); $sanctionUserId = $commentInfo['UF_USER_ID']; } } if (!$sanctionUserId) { DEBUGGER::error( Loc::getMessage('REQUIRED_DATA_NOT_COMPLETE'), [], false ); $json_return['ERROR'][] = Loc::getMessage('REQUIRED_DATA_NOT_COMPLETE'); } else if (!GRANT_AND_ACCESS::is_any_moder($arParams, $sanctionUserId)) { $actionInfo = [ 'commentInfo' => $commentInfo, 'sanctionUserId' => $sanctionUserId ]; $json_return['ACTION_RESULT'] = Sanctions::makeAction($requestType, $actionInfo); } else { $json_return['ACTION_RESULT'] = false; } } else { DEBUGGER::error( Loc::getMessage('OPERATION_ACCESS_DENIED'), [], false ); $json_return['ERROR'][] = Loc::getMessage('OPERATION_ACCESS_DENIED'); }