• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/LogMessage/CalendarSharing/Viewed.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\LogMessage\CalendarSharing\Viewed
  • Вызов: Viewed::getContentBlocks
public function getContentBlocks(): ?array
{
	if ($this->hasContact())
	{
		$content = $this->getSendedContactContentBlock();
	}
	else
	{
		$content = new Layout\Body\ContentBlock\Text();
		$content
			->setValue($this->getMessage('CRM_TIMELINE_CALENDAR_SHARING_GUEST_IS_VIEWING_SLOTS'))
			->setColor(Text::COLOR_BASE_70);
	}
	return [
		'sent' => $content,
	];
}