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/components/bitrix/main.userconsent.view/ |
Upload File : |
<?php use Bitrix\Main\Localization\Loc; use Bitrix\Main\ErrorCollection; use Bitrix\Main\Error; use Bitrix\Main\Context; use Bitrix\Main\UserConsent\Agreement; use Bitrix\Main\UserConsent\AgreementLink; if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) { die(); } Loc::loadMessages(__FILE__); class MainUserConsentViewComponent extends CBitrixComponent { /** @var ErrorCollection $errors */ protected $errors; protected function checkRequiredParams() { return true; } protected function initParams() { $this->arParams['ID'] = isset($this->arParams['ID']) ? intval($this->arParams['ID']) : null; $this->arParams['REPLACE'] = is_array($this->arParams['REPLACE']) ? $this->arParams['REPLACE'] : array(); $this->arParams['SECURITY_CODE'] = $this->arParams['SECURITY_CODE'] ?? null; if (!isset($this->arParams['PARAMS'])) { $this->arParams['PARAMS'] = Context::getCurrent()->getRequest()->toArray(); } if (!is_array($this->arParams['PARAMS'])) { $this->arParams['PARAMS'] = array(); } } protected function prepareResult() { if ($this->arParams['ID']) { $agreement = new Agreement($this->arParams['ID'], $this->arParams['REPLACE']); $agreementData = $agreement->getData(); if ($agreementData['SECURITY_CODE'] != $this->arParams['SECURITY_CODE']) { $agreement = null; } } else { $agreement = AgreementLink::getAgreementFromUriParameters($this->arParams['PARAMS']); } if (!$agreement) { //use user-friendly text instead of AgreementLink::getErrors(); $this->errors->add(array(new Error(Loc::getMessage('MAIN_USER_CONSENT_VIEW_ERROR')))); return false; } else { $this->arResult['TEXT'] = $agreement->getText(); $this->arResult['IS_HTML'] = $agreement->isAgreementTextHtml(); $this->arResult['HTML'] = $this->arResult['IS_HTML'] ? $agreement->getHtml() : ''; } return true; } protected function printErrors() { foreach ($this->errors as $error) { ShowError($error); } } public function executeComponent() { $this->errors = new ErrorCollection(); $this->initParams(); if (!$this->checkRequiredParams()) { $this->printErrors(); return; } if (!$this->prepareResult()) { $this->printErrors(); return; } $this->includeComponentTemplate(); } }