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 Burlakastudio\Realcommenter\Burn; use Burlakastudio\Realcommenter\Comments; use Burlakastudio\Realcommenter\ErrorNotificator; use Burlakastudio\Realcommenter\Voting; if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) { die(); } /** * ����� "��������� ����������� 2.0" ��� ������� * �������� ���� �����: www.realcommenter.com * �������� ���� �����������: burlaka.studio * ����� � ����������: ������� ������� (AlexeyGfi) -> alexeygfi@gmail.com */ /** * ����������� */ require_once 'ajax_comment_id_to_url_validator.php'; /** * @var $json_return array * @var $posts array */ if (!$json_return['ERROR']) { $vote_weight = (int)$posts['vote_weight']; try { $voting_result = Voting::voting($comment_id, $vote_weight, $arParams); if ($voting_result) { // ������� html-��� ����� � ������������ $comment_info = Comments::getCommentInfo($comment_id); $aside_html = Burn::burnCommentAside($comment_info, $arParams); $json_return['VOTEBLOCK_RESULT'] = $aside_html; } } catch (Exception $e) { ErrorNotificator::sendError($e->getMessage()); } }