wpmu_checkAvailableSpace
Determines if the available space defined by the admin has been exceeded by the user.
Description
wpmu_checkAvailableSpace();
Usage
if ( !function_exists( 'wpmu_checkAvailableSpace' ) ) { require_once ABSPATH . '/wp-admin/includes/ms-deprecated.php'; } // NOTICE! Understand what this does before running. $result = wpmu_checkAvailableSpace();
Defined (1)
The function is defined in the following location(s).
- /wp-admin/includes/ms-deprecated.php
- function wpmu_checkAvailableSpace() {
- _deprecated_function(__FUNCTION__, '3.0.0', 'is_upload_space_available()' );
- if ( !is_upload_space_available() )
- }