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

	$connection = Application::getConnection();
	if (!HeadIndex::isReady() && $connection->getTableField(ObjectTable::getTableName(), 'SEARCH_INDEX'))
	{
		$this->saveOldFullText($file);
	}

	if ($this->allowUseExtendedFullText)
	{
		$this->saveExtendedFullTextByContent($file);
	}
}