Multisite: After [37918] add support for retrieving custom site properties set by the site_details filter.

The behaviour was previously possible with the `blog_details` filter and `get_blog_details()` function. The former is deprecated since [38936].
This change adjusts the magic methods of `WP_Site` to also check if `$key` exists in `WP_Site::get_details()`. 

Fixes #40458.
Built from https://develop.svn.wordpress.org/trunk@40478


git-svn-id: http://core.svn.wordpress.org/trunk@40354 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2017-04-19 18:52:44 +00:00
parent ebf0b9e46e
commit 7977451301
2 changed files with 15 additions and 2 deletions

View File

@ -240,11 +240,15 @@ final class WP_Site {
case 'siteurl':
case 'post_count':
case 'home':
default: // Custom properties added by 'site_details' filter.
if ( ! did_action( 'ms_loaded' ) ) {
return null;
}
$details = $this->get_details();
return $details->$key;
if ( isset( $details->$key ) ) {
return $details->$key;
}
}
return null;
@ -275,6 +279,15 @@ final class WP_Site {
return false;
}
return true;
default: // Custom properties added by 'site_details' filter.
if ( ! did_action( 'ms_loaded' ) ) {
return false;
}
$details = $this->get_details();
if ( isset( $details->$key ) ) {
return true;
}
}
return false;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.8-alpha-40477';
$wp_version = '4.8-alpha-40478';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.