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/components/bitrix/landing.site_contacts/ |
Upload File : |
<?php if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) { die(); } use Bitrix\Landing\Connector; use Bitrix\Landing\Rights; \CBitrixComponent::includeComponentClass('bitrix:landing.base.form'); class LandingSiteContactsComponent extends LandingBaseFormComponent { /** * Saves form's data. * @return bool */ protected function actionSave(): bool { $access = Rights::hasAccessForSite( $this->arParams['SITE_ID'], Rights::ACCESS_TYPES['sett'] ); if (!$access) { return false; } Connector\Crm::setContacts($this->arParams['SITE_ID'], [ 'COMPANY' => $this->request('COMPANY'), 'PHONE' => $this->request('PHONE') ]); return true; } /** * Base executable method. * @return void */ public function executeComponent(): void { $init = $this->init(); if ($init) { $this->checkParam('TYPE', ''); $this->checkParam('SITE_ID', 0); \Bitrix\Landing\Site\Type::setScope( $this->arParams['TYPE'] ); $this->arResult['SITE'] = $this->getSites([ 'filter' => [ 'ID' => $this->arParams['SITE_ID'] ] ]); $access = Rights::hasAccessForSite( $this->arParams['SITE_ID'], Rights::ACCESS_TYPES['sett'] ); if ($this->arResult['SITE'] && $access) { $this->arResult['CRM_CONTACTS'] = Connector\Crm::getContacts( $this->arParams['SITE_ID'] ); $this->arResult['CRM_CONTACTS_RAW'] = Connector\Crm::getContactsRaw(); } else { $this->addError('ACCESS_DENIED', '', true); } } parent::executeComponent(); } }