• Модуль: clouds
  • Путь к файлу: ~/bitrix/modules/clouds/classes/mysql/storage_bucket.php
  • Класс: CAllCloudStorageBucket
  • Вызов: CAllCloudStorageBucket::SetFileCounter
public function SetFileCounter($file_size, $file_count)
{
	global $DB, $CACHE_MANAGER;
	$res = $DB->Query("
		UPDATE b_clouds_file_bucket
		SET FILE_COUNT = ".intval($file_count)."
		,FILE_SIZE = ".roundDB($file_size)."
		WHERE ID = ".$this->GetActualBucketId()."
	");

	if(CACHED_b_clouds_file_bucket !== false)
		$CACHE_MANAGER->CleanDir("b_clouds_file_bucket");
	return $res;
}