upload_is_user_over_quota( bool $echo = true )

Check whether a site has used its allotted upload space.


Parameters

$echo

(bool) (Optional) If $echo is set and the quota is exceeded, a warning message is echoed. Default is true.

Default value: true


Return

(bool) True if user is over upload space quota, otherwise false.


Source

File: wp-admin/includes/ms.php

function upload_is_user_over_quota( $echo = true ) {
	if ( get_site_option( 'upload_space_check_disabled' ) )
		return false;

	$space_allowed = get_space_allowed();
	if ( ! is_numeric( $space_allowed ) ) {
		$space_allowed = 10; // Default space allowed is 10 MB
	}
	$space_used = get_space_used();

	if ( ( $space_allowed - $space_used ) < 0 ) {
		if ( $echo )
			_e( 'Sorry, you have used your space allocation. Please delete some files to upload more files.' );
		return true;
	} else {
		return false;
	}
}


Changelog

Changelog
Version Description
WP-MU Introduced. (3.0.0)