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/modules/calendar/lib/sync/google/ |
Upload File : |
<?php namespace Bitrix\Calendar\Sync\Google; use Bitrix\Calendar\Core\Section\Section; use Bitrix\Main\Localization\Loc; class SectionConverter { /** * @var Section */ private Section $section; /** * @param Section $section */ public function __construct(Section $section) { $this->section = $section; } public function convertForEdit(): array { $section = []; $section['summary'] = $this->section->getName(); //todo move to level up if ($this->section->getExternalType() === \CCalendarSect::EXTERNAL_TYPE_LOCAL) { IncludeModuleLangFile($_SERVER['DOCUMENT_ROOT'] . BX_ROOT . '/modules/calendar/classes/general/calendar.php'); $section['summary'] = Loc::getMessage('EC_CALENDAR_BITRIX24_NAME') . " " . $section['summary']; } return $section; } }