• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/LogMessage/CalendarSharing/CalendarSharingPing.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\LogMessage\CalendarSharing\CalendarSharingPing
  • Вызов: CalendarSharingPing::buildContentBlocks
protected function buildContentBlocks(): array
{
	$descriptionBlock = (new LineOfTextBlocks())
		->addContentBlock(
			'title',
			ContentBlockFactory::createTitle(
				Loc::getMessage('CRM_TIMELINE_LOG_PING_MEETING_WITH_CLIENT') . ','
			),
		)
		->addContentBlock(
			'date',
			(new Date())
				->setDate($this->getDeadline())
				->setColor(Text::COLOR_BASE_90)

		)
	;

	return [
		'subject' => $descriptionBlock,
	];
}