2010-01-25 20:46:24 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-27 21:08:27 +01:00
|
|
|
* Multisite: Deprecated admin functions from past versions and WordPress MU
|
|
|
|
*
|
|
|
|
* These functions should not be used and will be removed in a later version.
|
|
|
|
* It is suggested to use for the alternatives instead when available.
|
2010-01-25 20:46:24 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Deprecated
|
2010-04-04 15:29:35 +02:00
|
|
|
* @since 3.0.0
|
2010-01-25 20:46:24 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Outputs the WPMU menu.
|
|
|
|
*
|
2010-04-04 15:29:35 +02:00
|
|
|
* @deprecated 3.0.0
|
2010-01-25 20:46:24 +01:00
|
|
|
*/
|
|
|
|
function wpmu_menu() {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0' );
|
2014-07-17 11:14:16 +02:00
|
|
|
// Deprecated. See #11763.
|
2010-01-25 20:46:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Determines if the available space defined by the admin has been exceeded by the user.
|
|
|
|
*
|
|
|
|
* @deprecated 3.0.0 Use is_upload_space_available()
|
|
|
|
* @see is_upload_space_available()
|
2010-01-25 20:46:24 +01:00
|
|
|
*/
|
|
|
|
function wpmu_checkAvailableSpace() {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0', 'is_upload_space_available()' );
|
2010-01-25 20:46:24 +01:00
|
|
|
|
|
|
|
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
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* WPMU options.
|
|
|
|
*
|
2010-04-04 15:29:35 +02:00
|
|
|
* @deprecated 3.0.0
|
2010-01-25 22:33:49 +01:00
|
|
|
*/
|
|
|
|
function mu_options( $options ) {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0' );
|
2010-01-25 22:33:49 +01:00
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
|
2010-02-02 19:05:01 +01:00
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for activating a network-only plugin.
|
|
|
|
*
|
|
|
|
* @deprecated 3.0.0 Use activate_plugin()
|
2010-04-04 15:29:35 +02:00
|
|
|
* @see activate_plugin()
|
2010-02-02 19:05:01 +01:00
|
|
|
*/
|
|
|
|
function activate_sitewide_plugin() {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0', 'activate_plugin()' );
|
2010-02-02 19:05:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for deactivating a network-only plugin.
|
|
|
|
*
|
|
|
|
* @deprecated 3.0.0 Use deactivate_sitewide_plugin()
|
2010-04-04 15:29:35 +02:00
|
|
|
* @see deactivate_sitewide_plugin()
|
2010-02-02 19:05:01 +01:00
|
|
|
*/
|
|
|
|
function deactivate_sitewide_plugin( $plugin = false ) {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0', 'deactivate_plugin()' );
|
2010-02-02 19:05:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for determining if the current plugin is network-only.
|
|
|
|
*
|
|
|
|
* @deprecated 3.0.0 Use is_network_only_plugin()
|
2010-04-04 15:29:35 +02:00
|
|
|
* @see is_network_only_plugin()
|
2010-02-02 19:05:01 +01:00
|
|
|
*/
|
|
|
|
function is_wpmu_sitewide_plugin( $file ) {
|
2010-04-04 15:29:35 +02:00
|
|
|
_deprecated_function(__FUNCTION__, '3.0', 'is_network_only_plugin()' );
|
2010-02-02 19:05:01 +01:00
|
|
|
return is_network_only_plugin( $file );
|
|
|
|
}
|
Introduce WP_Theme, wp_get_themes(), and wp_get_theme() to replace get_themes(), get_theme(), get_theme_data(), current_theme_info(), and others.
* Getters and Helpers: Introduces a series of methods to allow for easy generation of headers for display, and other theme metadata, including page templates.
* Screenshots: Handles support for multiple screenshots. (see # Additional screenshots must be PNG and start with screenshot-2.png, and be sequential to be counted. see #19816.
* Error Handling: Broken themes have a WP_Error object attached to them.
* Caching: Introduces a wp_cache_themes_persistently filter (also in [20020]) to enable persistent caching of all filesystem and sanitization operations normally handled by WP_Theme (and formerly get_file_data() and get_themes()). Themes are cached individually and across five different cache keys for different data pieces.
* Compatibility: A WP_Theme object is backwards compatible with a theme's array formerly returned by get_themes() and get_theme(), and an stdClass object formerly returned by current_theme_info().
* i18n/L10n: Theme headers are now localizable with proper Text Domain and Domain Path headers, like plugins. (Language packs may remove the requirement for headers.) For page templates, see #6007 (not fixed yet, but will be easy now). For headers, fixes #15858.
* PHP and CSS files: New methods that fetch a list of theme files (for the theme editor) only on demand, rather than only loading them into memory. fixes #11214.
Functions deprecated:
* get_themes(), get_allowed_themes() and get_broken_themes() -- use wp_get_themes()
* get_theme() and current_theme_info() -- use wp_get_theme()
* get_site_allowed_themes() -- use WP_Theme::get_allowed_on_network()
* wpmu_get_blog_allowedthemes() -- use WP_theme::get_allowed_on_site()
see also [20016], [20018], [20019], [20020], [20021], [20022], [20025], [20026], [20027]. also fixes #19244.
see #20103.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-28 22:24:44 +01:00
|
|
|
|
2015-05-31 05:18:25 +02:00
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for getting themes network-enabled themes.
|
|
|
|
*
|
|
|
|
* @deprecated 3.4.0 Use WP_Theme::get_allowed_on_network()
|
2015-05-31 05:18:25 +02:00
|
|
|
* @see WP_Theme::get_allowed_on_network()
|
|
|
|
*/
|
Introduce WP_Theme, wp_get_themes(), and wp_get_theme() to replace get_themes(), get_theme(), get_theme_data(), current_theme_info(), and others.
* Getters and Helpers: Introduces a series of methods to allow for easy generation of headers for display, and other theme metadata, including page templates.
* Screenshots: Handles support for multiple screenshots. (see # Additional screenshots must be PNG and start with screenshot-2.png, and be sequential to be counted. see #19816.
* Error Handling: Broken themes have a WP_Error object attached to them.
* Caching: Introduces a wp_cache_themes_persistently filter (also in [20020]) to enable persistent caching of all filesystem and sanitization operations normally handled by WP_Theme (and formerly get_file_data() and get_themes()). Themes are cached individually and across five different cache keys for different data pieces.
* Compatibility: A WP_Theme object is backwards compatible with a theme's array formerly returned by get_themes() and get_theme(), and an stdClass object formerly returned by current_theme_info().
* i18n/L10n: Theme headers are now localizable with proper Text Domain and Domain Path headers, like plugins. (Language packs may remove the requirement for headers.) For page templates, see #6007 (not fixed yet, but will be easy now). For headers, fixes #15858.
* PHP and CSS files: New methods that fetch a list of theme files (for the theme editor) only on demand, rather than only loading them into memory. fixes #11214.
Functions deprecated:
* get_themes(), get_allowed_themes() and get_broken_themes() -- use wp_get_themes()
* get_theme() and current_theme_info() -- use wp_get_theme()
* get_site_allowed_themes() -- use WP_Theme::get_allowed_on_network()
* wpmu_get_blog_allowedthemes() -- use WP_theme::get_allowed_on_site()
see also [20016], [20018], [20019], [20020], [20021], [20022], [20025], [20026], [20027]. also fixes #19244.
see #20103.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-28 22:24:44 +01:00
|
|
|
function get_site_allowed_themes() {
|
|
|
|
_deprecated_function( __FUNCTION__, '3.4', 'WP_Theme::get_allowed_on_network()' );
|
|
|
|
return array_map( 'intval', WP_Theme::get_allowed_on_network() );
|
|
|
|
}
|
|
|
|
|
2015-05-31 05:18:25 +02:00
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for getting themes allowed on a specific site.
|
|
|
|
*
|
|
|
|
* @deprecated 3.4.0 Use WP_Theme::get_allowed_on_site()
|
2015-05-31 05:18:25 +02:00
|
|
|
* @see WP_Theme::get_allowed_on_site()
|
|
|
|
*/
|
Introduce WP_Theme, wp_get_themes(), and wp_get_theme() to replace get_themes(), get_theme(), get_theme_data(), current_theme_info(), and others.
* Getters and Helpers: Introduces a series of methods to allow for easy generation of headers for display, and other theme metadata, including page templates.
* Screenshots: Handles support for multiple screenshots. (see # Additional screenshots must be PNG and start with screenshot-2.png, and be sequential to be counted. see #19816.
* Error Handling: Broken themes have a WP_Error object attached to them.
* Caching: Introduces a wp_cache_themes_persistently filter (also in [20020]) to enable persistent caching of all filesystem and sanitization operations normally handled by WP_Theme (and formerly get_file_data() and get_themes()). Themes are cached individually and across five different cache keys for different data pieces.
* Compatibility: A WP_Theme object is backwards compatible with a theme's array formerly returned by get_themes() and get_theme(), and an stdClass object formerly returned by current_theme_info().
* i18n/L10n: Theme headers are now localizable with proper Text Domain and Domain Path headers, like plugins. (Language packs may remove the requirement for headers.) For page templates, see #6007 (not fixed yet, but will be easy now). For headers, fixes #15858.
* PHP and CSS files: New methods that fetch a list of theme files (for the theme editor) only on demand, rather than only loading them into memory. fixes #11214.
Functions deprecated:
* get_themes(), get_allowed_themes() and get_broken_themes() -- use wp_get_themes()
* get_theme() and current_theme_info() -- use wp_get_theme()
* get_site_allowed_themes() -- use WP_Theme::get_allowed_on_network()
* wpmu_get_blog_allowedthemes() -- use WP_theme::get_allowed_on_site()
see also [20016], [20018], [20019], [20020], [20021], [20022], [20025], [20026], [20027]. also fixes #19244.
see #20103.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-28 22:24:44 +01:00
|
|
|
function wpmu_get_blog_allowedthemes( $blog_id = 0 ) {
|
|
|
|
_deprecated_function( __FUNCTION__, '3.4', 'WP_Theme::get_allowed_on_site()' );
|
|
|
|
return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) );
|
2012-09-12 00:22:20 +02:00
|
|
|
}
|
|
|
|
|
2015-05-31 05:18:25 +02:00
|
|
|
/**
|
2015-08-21 00:26:24 +02:00
|
|
|
* Deprecated functionality for determining whether a file is deprecated.
|
|
|
|
*
|
|
|
|
* @deprecated 3.5.0
|
2015-05-31 05:18:25 +02:00
|
|
|
*/
|
2015-08-21 00:26:24 +02:00
|
|
|
function ms_deprecated_blogs_file() {}
|