CCrmSipHelper::getStatusColor

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmSipHelper
  4. getStatusColor
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/sip_helper.php
  • Класс: \CCrmSipHelper
  • Вызов: CCrmSipHelper::getStatusColor
static function getStatusColor(int $entityTypeId): ?string
{
	if ($entityTypeId === \CCrmOwnerType::Deal)
	{
		return '#BE93F4';
	}
	if ($entityTypeId === \CCrmOwnerType::Lead)
	{
		return '#93F4E9';
	}

	return null;
}

Добавить комментарий