• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/search/word.php
  • Класс: BitrixSaleLocationSearchWordTable
  • Вызов: WordTable::getIdByWord
static function getIdByWord($word)
{
	$word = trim((string)$word);
	if ($word === '')
	{
		return false;
	}

	$dbConnection = MainHttpApplication::getConnection();

	$item = $dbConnection->query(
		"select ID from " . static::getTableName()
		. " where WORD = '" . $dbConnection->getSqlHelper()->forSql($word) . "'"
	)->fetch();

	$id = (int)($item['ID'] ?? 0);

	return $id ?: false;
}