• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Activity/CalendarSharing.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Activity\CalendarSharing
  • Вызов: CalendarSharing::getTags
public function getTags(): ?array
{
	$tags = [];

	if (!$this->isScheduled() && $this->isCanceledByClient())
	{
		$tags['canceledByClient'] = (new Layout\Header\Tag(
			Loc::getMessage('CRM_BADGE_CALENDAR_SHARING_STATUS_CANCELED_BY_CLIENT_VALUE'),
			Layout\Header\Tag::TYPE_FAILURE
		));
	}

	return $tags;
}