• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/search/indexmanager.php
  • Класс: BitrixDiskSearchIndexManager
  • Вызов: IndexManager::indexFile
public function indexFile(File $file, array $additionalData = array())
{
	if (!$this->allowIndex($file))
	{
		return;
	}

	$this->saveFullTextByHead($file);
	$this->updateFileContent($file);
	$this->indexFileByModuleSearch($file);
}