mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 16:29:31 +01:00
7a4d409064
git-svn-id: http://svn.automattic.com/wordpress/trunk@12929 1a063a9b-81f0-0310-95a4-ce76da25c4cd
60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<?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.') );
|
|
}
|
|
|
|
/**
|
|
* @deprecated 3.0
|
|
*/
|
|
function mu_options( $options ) {
|
|
_deprecated_function(__FUNCTION__, '3.0', '' );
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* @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 );
|
|
}
|
|
|
|
?>
|