wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_upload_space_available › WordPress Function
Seit3.0.0
Veraltetn/v
› get_upload_space_available ( Keine Parameter )
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Determines if there is any upload space left in the current blog's quota.
Ähnliche Funktionen: is_upload_space_available, get_theme_update_available, theme_update_available, get_space_allowed, get_admin_page_title
Quellcode
function get_upload_space_available() {
$allowed = get_space_allowed();
if ( $allowed < 0 ) {
$allowed = 0;
}
$space_allowed = $allowed * MB_IN_BYTES;
if ( get_site_option( 'upload_space_check_disabled' ) ) {
return $space_allowed;
}
$space_used = get_space_used() * MB_IN_BYTES;
if ( ( $space_allowed - $space_used ) <= 0 ) {
return 0;
}
return $space_allowed - $space_used;
}