is_upload_space_available

Definition:
function is_upload_space_available() {}

Determines if there is any upload space left in the current blog’s quota.

Return values

returns:True if space is available, false otherwise.

Source code

function is_upload_space_available() {

	if ( get_site_option( 'upload_space_check_disabled' ) )

		return true;



	if ( !( $space_allowed = get_upload_space_available() ) )

		return false;



	return true;

}

2217

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: