• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/search/finder.php
  • Класс: BitrixSaleLocationSearchFinder
  • Вызов: Finder::getTypesFromDb
static function getTypesFromDb()
{
	$typesFromDb = array();
	$res = LocationTypeTable::getList(array('select' => array('ID')));
	while($item = $res->fetch())
		$typesFromDb[intval($item['ID'])] = true;

	return $typesFromDb;
}