• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/internals/volume.php
  • Класс: BitrixDiskInternalsVolumeTable
  • Вызов: VolumeTable::onStorageDelete
static function onStorageDelete($storageId, $deletedBy = BitrixDiskSystemUser::SYSTEM_USER_ID)
{
	try
	{
		if ($storageId > 0)
		{
			// remove all data relative to storage
			static::deleteBatch(array('STORAGE_ID' => $storageId));
		}
	}
	catch(Exception $e)
	{
	}
}