• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/propertyindex/manager.php
  • Класс: BitrixIblockPropertyIndexManager
  • Вызов: Manager::dropIfExists
static function dropIfExists($iblockId)
{
	$storage = new Storage($iblockId);
	if ($storage->isExists())
		$storage->drop();

	$dictionary = new Dictionary($iblockId);
	if ($dictionary->isExists())
		$dictionary->drop();
}