• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/internals/index/objectextendedindextable.php
  • Класс: BitrixDiskInternalsIndexObjectExtendedIndexTable
  • Вызов: ObjectExtendedIndexTable::upsert
static function upsert($objectId, $searchIndex, $status = self::STATUS_SHORT)
{
	$objectId = (int)$objectId;
	$searchIndex = trim($searchIndex);

	static::merge([
		'OBJECT_ID' => $objectId,
		'SEARCH_INDEX' => $searchIndex,
		'UPDATE_TIME' => new DateTime(),
		'STATUS' => $status,
	]);
}