• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/search/word.php
  • Класс: BitrixSaleLocationSearchWordTable
  • Вызов: WordTable::getWordsByBounds
static function getWordsByBounds($inf, $sup)
{
	return static::getList(array('filter' => array(
		'>=POSITION' => intval($inf),
		'<=POSITION' => intval($sup)
	), 'order' => array(
		'POSITION' => 'asc'
	)));
}