wpmu_checkAvailableSpace

Advertisement

Deprecated Deprecated

This function has been deprecated. Use is_upload_space_available() instead.

Summery Summery

Determines if the available space defined by the admin has been exceeded by the user.

Syntax Syntax

wpmu_checkAvailableSpace()

Source Source

File: wp-admin/includes/ms-deprecated.php

function wpmu_checkAvailableSpace() {
	_deprecated_function( __FUNCTION__, '3.0.0', 'is_upload_space_available()' );

	if ( ! is_upload_space_available() ) {
		wp_die( sprintf(
			/* translators: %s: Allowed space allocation. */
			__( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
			size_format( get_space_allowed() * MB_IN_BYTES )
		) );
	}
}

Advertisement

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

See also See also

Advertisement

Leave a Reply