• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/propertyindex/indexer.php
  • Класс: BitrixIblockPropertyIndexIndexer
  • Вызов: Indexer::startIndex
public function startIndex()
{
	if ($this->storage->isExists())
		$this->storage->drop();
	if ($this->dictionary->isExists())
		$this->dictionary->drop();

	$this->dictionary->create();
	$this->storage->create();

	return true;
}