mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 23:25:50 +01:00
Code Modernization: Add AllowDynamicProperties
attribute to all (parent) classes.
Dynamic (non-explicitly declared) properties are deprecated as of PHP 8.2 and are expected to become a fatal error in PHP 9.0. There are a number of ways to mitigate this: * If it is an accidental typo for a declared property: fix the typo. * For known properties: declare them on the class. * For unknown properties: add the magic `__get()`, `__set()`, et al. methods to the class or let the class extend `stdClass` which has highly optimized versions of these magic methods built in. * For unknown ''use'' of dynamic properties, the `#[AllowDynamicProperties]` attribute can be added to the class. The attribute will automatically be inherited by child classes. Trac ticket #56034 is open to investigate and handle the third and fourth type of situations, however it has become clear this will need more time and will not be ready in time for WP 6.1. To reduce “noise” in the meantime, both in the error logs of WP users moving onto PHP 8.2, in the test run logs of WP itself, in test runs of plugins and themes, as well as to prevent duplicate tickets from being opened for the same issue, this commit adds the `#[AllowDynamicProperties]` attribute to all “parent” classes in WP. The logic used for this commit is as follows: * If a class already has the attribute: no action needed. * If a class does not `extend`: add the attribute. * If a class does `extend`: - If it extends `stdClass`: no action needed (as `stdClass` supports dynamic properties). - If it extends a PHP native class: add the attribute. - If it extends a class from one of WP's external dependencies: add the attribute. * In all other cases: no action — the attribute should not be needed as child classes inherit from the parent. Whether or not a class contains magic methods has not been taken into account, as a review of the currently existing magic methods has shown that those are generally not sturdy enough and often even set dynamic properties (which they should not). See the [https://www.youtube.com/watch?v=vDZWepDQQVE live stream from August 16, 2022] for more details. This commit only affects classes in the `src` directory of WordPress core. * Tests should not get this attribute, but should be fixed to not use dynamic properties instead. Patches for this are already being committed under ticket #56033. * While a number bundled themes (2014, 2019, 2020, 2021) contain classes, they are not a part of this commit and may be updated separately. Reference: [https://wiki.php.net/rfc/deprecate_dynamic_properties PHP RFC: Deprecate dynamic properties]. Follow-up to [53922]. Props jrf, hellofromTonya, markjaquith, peterwilsoncc, costdev, knutsp, aristath. See #56513, #56034. Built from https://develop.svn.wordpress.org/trunk@54133 git-svn-id: http://core.svn.wordpress.org/trunk@53692 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b0f4c2c37e
commit
c03305852e
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.0.0
|
* @since 3.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class Custom_Background {
|
class Custom_Background {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class Custom_Image_Header {
|
class Custom_Image_Header {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class File_Upload_Upgrader {
|
class File_Upload_Upgrader {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 3.7.0
|
* @since 3.7.0
|
||||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader.php.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Automatic_Updater {
|
class WP_Automatic_Updater {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.8.0
|
* @since 4.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Community_Events {
|
class WP_Community_Events {
|
||||||
/**
|
/**
|
||||||
* ID for a WordPress user account.
|
* ID for a WordPress user account.
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Debug_Data {
|
class WP_Debug_Data {
|
||||||
/**
|
/**
|
||||||
* Calls all core functions to check for updates.
|
* Calls all core functions to check for updates.
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.5.0
|
* @since 2.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Filesystem_Base {
|
class WP_Filesystem_Base {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
/**
|
/**
|
||||||
* WP_Importer base class
|
* WP_Importer base class
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Importer {
|
class WP_Importer {
|
||||||
/**
|
/**
|
||||||
* Class Constructor
|
* Class Constructor
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Internal_Pointers {
|
final class WP_Internal_Pointers {
|
||||||
/**
|
/**
|
||||||
* Initializes the new feature pointers.
|
* Initializes the new feature pointers.
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_List_Table {
|
class WP_List_Table {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* @since 4.9.6
|
* @since 4.9.6
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Privacy_Policy_Content {
|
final class WP_Privacy_Policy_Content {
|
||||||
|
|
||||||
private static $policy_content = array();
|
private static $policy_content = array();
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.3.0
|
* @since 3.3.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Screen {
|
final class WP_Screen {
|
||||||
/**
|
/**
|
||||||
* Any action associated with the screen.
|
* Any action associated with the screen.
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Site_Health_Auto_Updates {
|
class WP_Site_Health_Auto_Updates {
|
||||||
/**
|
/**
|
||||||
* WP_Site_Health_Auto_Updates constructor.
|
* WP_Site_Health_Auto_Updates constructor.
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Site_Health {
|
class WP_Site_Health {
|
||||||
private static $instance = null;
|
private static $instance = null;
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.3.0
|
* @since 4.3.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Site_Icon {
|
class WP_Site_Icon {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Upgrader_Skin {
|
class WP_Upgrader_Skin {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -48,6 +48,7 @@ require_once ABSPATH . 'wp-admin/includes/class-wp-ajax-upgrader-skin.php';
|
|||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Upgrader {
|
class WP_Upgrader {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Admin_Bar {
|
class WP_Admin_Bar {
|
||||||
private $nodes = array();
|
private $nodes = array();
|
||||||
private $bound = false;
|
private $bound = false;
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Ajax_Response {
|
class WP_Ajax_Response {
|
||||||
/**
|
/**
|
||||||
* Store XML responses to send.
|
* Store XML responses to send.
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Application_Passwords {
|
class WP_Application_Passwords {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.8.0
|
* @since 5.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Block_Editor_Context {
|
final class WP_Block_Editor_Context {
|
||||||
/**
|
/**
|
||||||
* String that identifies the block editor being rendered. Can be one of:
|
* String that identifies the block editor being rendered. Can be one of:
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.5.0
|
* @since 5.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Block_List implements Iterator, ArrayAccess, Countable {
|
class WP_Block_List implements Iterator, ArrayAccess, Countable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
/**
|
/**
|
||||||
* Class used for interacting with block pattern categories.
|
* Class used for interacting with block pattern categories.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Block_Pattern_Categories_Registry {
|
final class WP_Block_Pattern_Categories_Registry {
|
||||||
/**
|
/**
|
||||||
* Registered block pattern categories array.
|
* Registered block pattern categories array.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.5.0
|
* @since 5.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Block_Patterns_Registry {
|
final class WP_Block_Patterns_Registry {
|
||||||
/**
|
/**
|
||||||
* Registered block patterns array.
|
* Registered block patterns array.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.3.0
|
* @since 5.3.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Block_Styles_Registry {
|
final class WP_Block_Styles_Registry {
|
||||||
/**
|
/**
|
||||||
* Registered block styles, as `$block_name => $block_style_name => $block_style_properties` multidimensional arrays.
|
* Registered block styles, as `$block_name => $block_style_name => $block_style_properties` multidimensional arrays.
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Block_Supports {
|
class WP_Block_Supports {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.8.0
|
* @since 5.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Block_Template {
|
class WP_Block_Template {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Block_Type_Registry {
|
final class WP_Block_Type_Registry {
|
||||||
/**
|
/**
|
||||||
* Registered block types, as `$name => $instance` pairs.
|
* Registered block types, as `$name => $instance` pairs.
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see register_block_type()
|
* @see register_block_type()
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Block_Type {
|
class WP_Block_Type {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
* @since 5.5.0
|
* @since 5.5.0
|
||||||
* @property array $attributes
|
* @property array $attributes
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Block {
|
class WP_Block {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Comment_Query::__construct() for accepted arguments.
|
* @see WP_Comment_Query::__construct() for accepted arguments.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Comment_Query {
|
class WP_Comment_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.4.0
|
* @since 4.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Comment {
|
final class WP_Comment {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Customize_Control {
|
class WP_Customize_Control {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Customize_Manager {
|
final class WP_Customize_Manager {
|
||||||
/**
|
/**
|
||||||
* An instance of the theme being previewed.
|
* An instance of the theme being previewed.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Customize_Manager
|
* @see WP_Customize_Manager
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Customize_Nav_Menus {
|
final class WP_Customize_Nav_Menus {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Customize_Manager
|
* @see WP_Customize_Manager
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Customize_Panel {
|
class WP_Customize_Panel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Customize_Manager
|
* @see WP_Customize_Manager
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Customize_Section {
|
class WP_Customize_Section {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* @see WP_Customize_Manager
|
* @see WP_Customize_Manager
|
||||||
* @link https://developer.wordpress.org/themes/customize-api
|
* @link https://developer.wordpress.org/themes/customize-api
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Customize_Setting {
|
class WP_Customize_Setting {
|
||||||
/**
|
/**
|
||||||
* Customizer bootstrap instance.
|
* Customizer bootstrap instance.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Customize_Manager
|
* @see WP_Customize_Manager
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Customize_Widgets {
|
final class WP_Customize_Widgets {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.7.0
|
* @since 3.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Date_Query {
|
class WP_Date_Query {
|
||||||
/**
|
/**
|
||||||
* Array of date queries.
|
* Array of date queries.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
* @access private
|
* @access private
|
||||||
* @since 2.6.0
|
* @since 2.6.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class _WP_Dependency {
|
class _WP_Dependency {
|
||||||
/**
|
/**
|
||||||
* The handle name.
|
* The handle name.
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
* Private, not included by default. See wp_editor() in wp-includes/general-template.php.
|
* Private, not included by default. See wp_editor() in wp-includes/general-template.php.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class _WP_Editors {
|
final class _WP_Editors {
|
||||||
public static $mce_locale;
|
public static $mce_locale;
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
* @subpackage Embed
|
* @subpackage Embed
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Embed {
|
class WP_Embed {
|
||||||
public $handlers = array();
|
public $handlers = array();
|
||||||
public $post_ID;
|
public $post_ID;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Error {
|
class WP_Error {
|
||||||
/**
|
/**
|
||||||
* Stores the list of errors.
|
* Stores the list of errors.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Fatal_Error_Handler {
|
class WP_Fatal_Error_Handler {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Feed_Cache_Transient {
|
class WP_Feed_Cache_Transient {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@ _deprecated_file(
|
|||||||
*
|
*
|
||||||
* @see SimplePie_Cache
|
* @see SimplePie_Cache
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Feed_Cache extends SimplePie_Cache {
|
class WP_Feed_Cache extends SimplePie_Cache {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
* @see Iterator
|
* @see Iterator
|
||||||
* @see ArrayAccess
|
* @see ArrayAccess
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Hook implements Iterator, ArrayAccess {
|
final class WP_Hook implements Iterator, ArrayAccess {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Http_Cookie {
|
class WP_Http_Cookie {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Http_Curl {
|
class WP_Http_Curl {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Http_Encoding {
|
class WP_Http_Encoding {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_HTTP_IXR_Client extends IXR_Client {
|
class WP_HTTP_IXR_Client extends IXR_Client {
|
||||||
public $scheme;
|
public $scheme;
|
||||||
/**
|
/**
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_HTTP_Proxy {
|
class WP_HTTP_Proxy {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see Requests_Hooks
|
* @see Requests_Hooks
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_HTTP_Requests_Hooks extends Requests_Hooks {
|
class WP_HTTP_Requests_Hooks extends Requests_Hooks {
|
||||||
/**
|
/**
|
||||||
* Requested URL.
|
* Requested URL.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.4.0
|
* @since 4.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_HTTP_Response {
|
class WP_HTTP_Response {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
* @since 3.7.0 Combined with the fsockopen transport and switched to `stream_socket_client()`.
|
* @since 3.7.0 Combined with the fsockopen transport and switched to `stream_socket_client()`.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Http_Streams {
|
class WP_Http_Streams {
|
||||||
/**
|
/**
|
||||||
* Send a HTTP request to a URI using PHP Streams.
|
* Send a HTTP request to a URI using PHP Streams.
|
||||||
|
@ -25,6 +25,7 @@ if ( ! class_exists( 'Requests' ) ) {
|
|||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Http {
|
class WP_Http {
|
||||||
|
|
||||||
// Aliases for HTTP response codes.
|
// Aliases for HTTP response codes.
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
abstract class WP_Image_Editor {
|
abstract class WP_Image_Editor {
|
||||||
protected $file = null;
|
protected $file = null;
|
||||||
protected $size = null;
|
protected $size = null;
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.7.0
|
* @since 4.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_List_Util {
|
class WP_List_Util {
|
||||||
/**
|
/**
|
||||||
* The input array.
|
* The input array.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.7.0
|
* @since 4.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Locale_Switcher {
|
class WP_Locale_Switcher {
|
||||||
/**
|
/**
|
||||||
* Locale stack.
|
* Locale stack.
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
* @since 4.6.0 Moved to its own file from wp-includes/locale.php.
|
* @since 4.6.0 Moved to its own file from wp-includes/locale.php.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Locale {
|
class WP_Locale {
|
||||||
/**
|
/**
|
||||||
* Stores the translated strings for the full weekday names.
|
* Stores the translated strings for the full weekday names.
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_MatchesMapRegex {
|
class WP_MatchesMapRegex {
|
||||||
/**
|
/**
|
||||||
* store for matches
|
* store for matches
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.2.0
|
* @since 3.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Meta_Query {
|
class WP_Meta_Query {
|
||||||
/**
|
/**
|
||||||
* Array of metadata queries.
|
* Array of metadata queries.
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.5.0
|
* @since 4.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Metadata_Lazyloader {
|
class WP_Metadata_Lazyloader {
|
||||||
/**
|
/**
|
||||||
* Pending objects queue.
|
* Pending objects queue.
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Network_Query::__construct() for accepted arguments.
|
* @see WP_Network_Query::__construct() for accepted arguments.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Network_Query {
|
class WP_Network_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
* @property int $id
|
* @property int $id
|
||||||
* @property int $site_id
|
* @property int $site_id
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Network {
|
class WP_Network {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Object_Cache {
|
class WP_Object_Cache {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.4.0
|
* @since 4.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_oEmbed_Controller {
|
final class WP_oEmbed_Controller {
|
||||||
/**
|
/**
|
||||||
* Register the oEmbed REST API route.
|
* Register the oEmbed REST API route.
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_oEmbed {
|
class WP_oEmbed {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Paused_Extensions_Storage {
|
class WP_Paused_Extensions_Storage {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see register_post_type()
|
* @see register_post_type()
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Post_Type {
|
final class WP_Post_Type {
|
||||||
/**
|
/**
|
||||||
* Post type key.
|
* Post type key.
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
* @property-read int[] $post_category
|
* @property-read int[] $post_category
|
||||||
* @property-read string[] $tags_input
|
* @property-read string[] $tags_input
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Post {
|
final class WP_Post {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
* @since 4.5.0 Removed the `$comments_popup` property.
|
* @since 4.5.0 Removed the `$comments_popup` property.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Query {
|
class WP_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Recovery_Mode_Cookie_Service {
|
final class WP_Recovery_Mode_Cookie_Service {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Recovery_Mode_Email_Service {
|
final class WP_Recovery_Mode_Email_Service {
|
||||||
|
|
||||||
const RATE_LIMIT_OPTION = 'recovery_mode_email_last_sent';
|
const RATE_LIMIT_OPTION = 'recovery_mode_email_last_sent';
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Recovery_Mode_Key_Service {
|
final class WP_Recovery_Mode_Key_Service {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Recovery_Mode_Link_Service {
|
class WP_Recovery_Mode_Link_Service {
|
||||||
const LOGIN_ACTION_ENTER = 'enter_recovery_mode';
|
const LOGIN_ACTION_ENTER = 'enter_recovery_mode';
|
||||||
const LOGIN_ACTION_ENTERED = 'entered_recovery_mode';
|
const LOGIN_ACTION_ENTERED = 'entered_recovery_mode';
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
*
|
*
|
||||||
* @since 5.2.0
|
* @since 5.2.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Recovery_Mode {
|
class WP_Recovery_Mode {
|
||||||
|
|
||||||
const EXIT_ACTION = 'exit_recovery_mode';
|
const EXIT_ACTION = 'exit_recovery_mode';
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Rewrite {
|
class WP_Rewrite {
|
||||||
/**
|
/**
|
||||||
* Permalink structure for posts.
|
* Permalink structure for posts.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Role {
|
class WP_Role {
|
||||||
/**
|
/**
|
||||||
* Role name.
|
* Role name.
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
*
|
*
|
||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Roles {
|
class WP_Roles {
|
||||||
/**
|
/**
|
||||||
* List of roles and capabilities.
|
* List of roles and capabilities.
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
abstract class WP_Session_Tokens {
|
abstract class WP_Session_Tokens {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
*
|
*
|
||||||
* @see SimplePie_File
|
* @see SimplePie_File
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_SimplePie_File extends SimplePie_File {
|
class WP_SimplePie_File extends SimplePie_File {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
*
|
*
|
||||||
* @see SimplePie_Sanitize
|
* @see SimplePie_Sanitize
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_SimplePie_Sanitize_KSES extends SimplePie_Sanitize {
|
class WP_SimplePie_Sanitize_KSES extends SimplePie_Sanitize {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Site_Query::__construct() for accepted arguments.
|
* @see WP_Site_Query::__construct() for accepted arguments.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Site_Query {
|
class WP_Site_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
* @property int $post_count
|
* @property int $post_count
|
||||||
* @property string $home
|
* @property string $home
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Site {
|
final class WP_Site {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Tax_Query {
|
class WP_Tax_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.7.0
|
* @since 4.7.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Taxonomy {
|
final class WP_Taxonomy {
|
||||||
/**
|
/**
|
||||||
* Taxonomy key.
|
* Taxonomy key.
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_Term_Query::__construct() for accepted arguments.
|
* @see WP_Term_Query::__construct() for accepted arguments.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Term_Query {
|
class WP_Term_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @property-read object $data Sanitized term data.
|
* @property-read object $data Sanitized term data.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Term {
|
final class WP_Term {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 2.6.0
|
* @since 2.6.0
|
||||||
* @uses Text_Diff_Renderer_inline Extends
|
* @uses Text_Diff_Renderer_inline Extends
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Text_Diff_Renderer_inline extends Text_Diff_Renderer_inline {
|
class WP_Text_Diff_Renderer_inline extends Text_Diff_Renderer_inline {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* @since 2.6.0
|
* @since 2.6.0
|
||||||
* @uses Text_Diff_Renderer Extends
|
* @uses Text_Diff_Renderer Extends
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
*
|
*
|
||||||
* @since 6.1.0
|
* @since 6.1.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Textdomain_Registry {
|
class WP_Textdomain_Registry {
|
||||||
/**
|
/**
|
||||||
* List of domains and all their language directory paths for each locale.
|
* List of domains and all their language directory paths for each locale.
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Theme_JSON_Resolver {
|
class WP_Theme_JSON_Resolver {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* @since 5.9.0
|
* @since 5.9.0
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Theme_JSON_Schema {
|
class WP_Theme_JSON_Schema {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_Theme_JSON {
|
class WP_Theme_JSON {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
* @subpackage Theme
|
* @subpackage Theme
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_Theme implements ArrayAccess {
|
final class WP_Theme implements ArrayAccess {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
*
|
*
|
||||||
* @see WP_User_Query::prepare_query() for information on accepted arguments.
|
* @see WP_User_Query::prepare_query() for information on accepted arguments.
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_User_Query {
|
class WP_User_Query {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*
|
*
|
||||||
* @since 4.9.6
|
* @since 4.9.6
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
final class WP_User_Request {
|
final class WP_User_Request {
|
||||||
/**
|
/**
|
||||||
* Request ID.
|
* Request ID.
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
* @property string $syntax_highlighting
|
* @property string $syntax_highlighting
|
||||||
* @property string $use_ssl
|
* @property string $use_ssl
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class WP_User {
|
class WP_User {
|
||||||
/**
|
/**
|
||||||
* User data container.
|
* User data container.
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user