• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/mailinvitation/senderinvitation.php
  • Класс: BitrixCalendarICalMailInvitationSenderInvitation
  • Вызов: SenderInvitation::prepareEventFields
protected function prepareEventFields(): void
{
	$this->event['DESCRIPTION'] = Helper::getEventDescriptionById((int) $this->event['ID']);
	$this->event['TEXT_LOCATION'] ??= null;
	if (is_array($this->event['TEXT_LOCATION']) && isset($this->event['TEXT_LOCATION']['NEW']))
	{
		$this->event['TEXT_LOCATION'] = $this->event['TEXT_LOCATION']['NEW'];
	}
	elseif (!is_string($this->event['TEXT_LOCATION']))
	{
		$this->event['TEXT_LOCATION'] = null;
	}
}