2010-01-25 20:46:24 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deprecated multisite admin functions from past WordPress versions. You shouldn't use these
|
|
|
|
* globals and functions and look for the alternatives instead. The functions
|
|
|
|
* and globals will be removed in a later version.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Deprecated
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated 3.0
|
|
|
|
*/
|
|
|
|
function wpmu_menu() {
|
|
|
|
_deprecated_function(__FUNCTION__, '3.0', '' );
|
|
|
|
// deprecated. See #11763
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if the available space defined by the admin has been exceeded by the user. Dies if it has.
|
|
|
|
* @deprecated 3.0
|
|
|
|
*/
|
|
|
|
function wpmu_checkAvailableSpace() {
|
|
|
|
_deprecated_function(__FUNCTION__, '3.0', 'is_upload_space_available' );
|
|
|
|
|
|
|
|
if ( !is_upload_space_available() )
|
|
|
|
wp_die( __('Sorry, you must delete files before you can upload any more.') );
|
|
|
|
}
|
|
|
|
|
2010-01-25 22:33:49 +01:00
|
|
|
/**
|
|
|
|
* @deprecated 3.0
|
|
|
|
*/
|
|
|
|
function mu_options( $options ) {
|
|
|
|
_deprecated_function(__FUNCTION__, '3.0', '' );
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
|
2010-02-02 19:05:01 +01:00
|
|
|
/**
|
|
|
|
* @deprecated 3.0
|
|
|
|
*/
|
|
|
|
function activate_sitewide_plugin() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated 3.0
|
|
|
|
*/
|
|
|
|
function deactivate_sitewide_plugin( $plugin = false ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated 3.0 is_network_only_plugin()
|
|
|
|
*/
|
|
|
|
function is_wpmu_sitewide_plugin( $file ) {
|
|
|
|
return is_network_only_plugin( $file );
|
|
|
|
}
|
|
|
|
|
2010-01-25 20:46:24 +01:00
|
|
|
?>
|