• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/search/reindexprocess.php
  • Класс: BitrixSaleLocationSearchReindexProcess
  • Вызов: ReindexProcess::stageCreateDictionaryBefore
protected function stageCreateDictionaryBefore()
{
	if(!isset($this->data['WORD_TABLE_INSTANCE_SERIALIZED']))
	{
		$instance = new WordTable(array(
			'TYPES' => Finder::getIndexedTypes(),
			'LANGS' => Finder::getIndexedLanguages()
		));
	}
	else
	{
		$instance = unserialize(
			$this->data['WORD_TABLE_INSTANCE_SERIALIZED'],
			['allowed_classes' => [WordTable::class]]
		);
	}

	$this->wordInstance = $instance;
}