• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Activity/CalendarSharing.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Activity\CalendarSharing
  • Вызов: CalendarSharing::getIconCode
public function getIconCode(): ?string
{
	if (!$this->isScheduled())
	{
		if (
			$this->isCanceledByClient()
			|| $this->isCanceledByManager()
			|| $this->isNotHeldMeeting()
		)
		{
			return Icon::CIRCLE_CROSSED;
		}
	}

	return Icon::CIRCLE_CHECK;
}