• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/mobile_helper.php
  • Класс: \CCrmMobileHelper
  • Вызов: CCrmMobileHelper::GetStatusList
static function GetStatusList($entityId)
{
	if(!isset(self::$STATUS_LISTS[$entityId]))
	{
		self::$STATUS_LISTS[$entityId] = CCrmStatus::GetStatusList($entityId);
		if(!is_array(self::$STATUS_LISTS[$entityId]))
		{
			self::$STATUS_LISTS[$entityId] = array();
		}
	}

	return self::$STATUS_LISTS[$entityId];
}