From 6f627988871bf43b72addd6bc36eceed5bfecd75 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Fri, 2 Sep 2016 23:48:00 +0000 Subject: [PATCH] Multisite: Deprecate `wp_get_network()`. `wp_get_network()` was converted into a wrapper for `get_network()` in 4.6.0 and can now be deprecated. This moves `wp_get_network()` to the bottom of `ms-load.php` as `ms-deprecated.php` is not available early enough. Props PieWP, flixos90. Fixes #37553. git-svn-id: https://develop.svn.wordpress.org/trunk@38515 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-load.php | 42 ++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/src/wp-includes/ms-load.php b/src/wp-includes/ms-load.php index 9fbaa5fa0d..abd70b803b 100644 --- a/src/wp-includes/ms-load.php +++ b/src/wp-includes/ms-load.php @@ -133,25 +133,6 @@ function get_network_by_path( $domain, $path, $segments = null ) { return WP_Network::get_by_path( $domain, $path, $segments ); } -/** - * Retrieve an object containing information about the requested network. - * - * @since 3.9.0 - * - * @internal In 4.6.0, converted to use get_network() - * - * @param object|int $network The network's database row or ID. - * @return WP_Network|false Object containing network information if found, false if not. - */ -function wp_get_network( $network ) { - $network = get_network( $network ); - if ( null === $network ) { - return false; - } - - return $network; -} - /** * Retrieve a site object by its domain and path. * @@ -542,3 +523,26 @@ function wpmu_current_site() { _deprecated_function( __FUNCTION__, '3.9.0' ); return $current_site; } + +/** + * Retrieve an object containing information about the requested network. + * + * @since 3.9.0 + * @deprecated 4.7.0 Use `get_network()` + * @see get_network() + * + * @internal In 4.6.0, converted to use get_network() + * + * @param object|int $network The network's database row or ID. + * @return WP_Network|false Object containing network information if found, false if not. + */ +function wp_get_network( $network ) { + _deprecated_function( __FUNCTION__, '4.7.0', 'get_network()' ); + + $network = get_network( $network ); + if ( null === $network ) { + return false; + } + + return $network; +}