• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/color/quotestatuscolorscheme.php
  • Класс: Bitrix\Crm\Color\QuoteStatusColorScheme
  • Вызов: QuoteStatusColorScheme::getCurrent
static function getCurrent()
{
	if(self::$current === null)
	{
		self::$current = new QuoteStatusColorScheme();
		if(!self::$current->load())
		{
			self::$current->setupByDefault();
		}
	}
	return self::$current;
}