• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/internals/objectpath.php
  • Класс: BitrixDiskInternalsObjectPathTable
  • Вызов: ObjectPathTable::deleteByObject
static function deleteByObject($objectId)
{
	//todo Is leaf? If this is not leaf - throw Exception?
	$objectId = (int)$objectId;

	$table = static::getTableName();
	$sql = "DELETE FROM {$table} WHERE OBJECT_ID = {$objectId}";

	Application::getInstance()->getConnection()->queryExecute($sql);
}