• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/sharingeventmanager.php
  • Класс: BitrixCalendarSharingSharingEventManager
  • Вызов: SharingEventManager::getEventDataFromRequest
static function getEventDataFromRequest($request): array
{
	return [
		'ownerId' => (int)($request['ownerId'] ?? 0),
		'dateFrom' => (string)($request['dateFrom'] ?? ''),
		'dateTo' => (string)($request['dateTo'] ?? ''),
		'timezone' => (string)($request['timezone'] ?? ''),
		'description' => (string)($request['description'] ?? ''),
		'eventType' => Dictionary::EVENT_TYPE['shared'],
	];
}