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/components/bitrix/main.userconsent.selector/ |
Upload File : |
<?php use Bitrix\Main\Application; use Bitrix\Main\Localization\Loc; use Bitrix\Main\ErrorCollection; use Bitrix\Main\UserConsent\Agreement; use Bitrix\Main\UserConsent\Intl; if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) { die(); } Loc::loadMessages(__FILE__); class MainUserConsentSelectorComponent 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['INPUT_NAME'] = isset($this->arParams['INPUT_NAME']) ? (string) $this->arParams['INPUT_NAME'] : 'AGREEMENT_ID'; $this->arParams['PATH_TO_ADD'] = $this->arParams['PATH_TO_ADD'] ?? ''; $this->arParams['PATH_TO_EDIT'] = $this->arParams['PATH_TO_EDIT'] ?? ''; $this->arParams['PATH_TO_CONSENT_LIST'] = $this->arParams['PATH_TO_CONSENT_LIST'] ?? ''; $this->arParams['ACTION_REQUEST_URL'] = $this->arParams['ACTION_REQUEST_URL'] ?? ''; } protected function prepareResult() { $this->arResult['LIST'] = array(); $list = Agreement::getActiveList(); foreach ($list as $id => $name) { $this->arResult['LIST'][] = array( 'ID' => $id, 'NAME' => $name, 'SELECTED' => $id == $this->arParams['ID'], ); } $intl = new Intl(Application::getInstance()->getLicense()->getRegion()); $this->arResult['DESCRIPTION'] = $intl->getDataValue('DESCRIPTION'); return true; } protected function printErrors() { foreach ($this->errors as $error) { ShowError($error); } } public function executeComponent() { $this->errors = new \Bitrix\Main\ErrorCollection(); $this->initParams(); if (!$this->checkRequiredParams()) { $this->printErrors(); return; } if (!$this->prepareResult()) { $this->printErrors(); return; } $this->includeComponentTemplate(); } }