• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_locations.php
  • Класс: \CCrmLocations
  • Вызов: CCrmLocations::GetAll
static function GetAll($arSort = array())
{
	if (!CModule::IncludeModule('sale'))
		return false;

	if(empty(self::$LOCATIONS))
	{
		$dbResultList = CSaleLocation::GetList($arSort);

		while ($arLoc = $dbResultList->Fetch())
			self::$LOCATIONS[$arLoc['ID']] = $arLoc;
	}

	return self::$LOCATIONS;
}