Changeset 51518
- Timestamp:
- 07/30/2021 07:34:39 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-screen.php
r49946 r51518 1015 1015 * 1016 1016 * @param string $screen_settings Screen settings. 1017 * @param WP_Screen $ thisWP_Screen object.1017 * @param WP_Screen $screen WP_Screen object. 1018 1018 */ 1019 1019 $this->_screen_settings = apply_filters( 'screen_settings', $this->_screen_settings, $this ); … … 1030 1030 * @param bool $show_screen Whether to show Screen Options tab. 1031 1031 * Default true. 1032 * @param WP_Screen $ thisCurrent WP_Screen instance.1032 * @param WP_Screen $screen Current WP_Screen instance. 1033 1033 */ 1034 1034 $this->_show_screen_options = apply_filters( 'screen_options_show_screen', $show_screen, $this ); -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r51329 r51518 833 833 * @since 4.6.0 `$translations` was added as a possible argument to `$hook_extra`. 834 834 * 835 * @param WP_Upgrader $ this WP_Upgrader instance. In other contexts, $this,might be a836 * Theme_Upgrader, Plugin_Upgrader, Core_Upgrade, or Language_Pack_Upgrader instance.835 * @param WP_Upgrader $upgrader WP_Upgrader instance. In other contexts this might be a 836 * Theme_Upgrader, Plugin_Upgrader, Core_Upgrade, or Language_Pack_Upgrader instance. 837 837 * @param array $hook_extra { 838 838 * Array of bulk item update data. -
trunk/src/wp-includes/class-wp-comment-query.php
r51298 r51518 325 325 * @since 4.2.0 326 326 * 327 * @param WP_Comment_Query $ thisThe WP_Comment_Query instance (passed by reference).327 * @param WP_Comment_Query $query The WP_Comment_Query instance (passed by reference). 328 328 */ 329 329 do_action_ref_array( 'parse_comment_query', array( &$this ) ); … … 371 371 * @since 3.1.0 372 372 * 373 * @param WP_Comment_Query $ thisCurrent instance of WP_Comment_Query (passed by reference).373 * @param WP_Comment_Query $query Current instance of WP_Comment_Query (passed by reference). 374 374 */ 375 375 do_action_ref_array( 'pre_get_comments', array( &$this ) ); -
trunk/src/wp-includes/class-wp-customize-control.php
r50996 r51518 398 398 * @since 3.4.0 399 399 * 400 * @param WP_Customize_Control $ thisWP_Customize_Control instance.400 * @param WP_Customize_Control $control WP_Customize_Control instance. 401 401 */ 402 402 do_action( 'customize_render_control', $this ); … … 410 410 * @since 3.4.0 411 411 * 412 * @param WP_Customize_Control $ thisWP_Customize_Control instance.412 * @param WP_Customize_Control $control WP_Customize_Control instance. 413 413 */ 414 414 do_action( "customize_render_control_{$this->id}", $this ); -
trunk/src/wp-includes/class-wp-customize-manager.php
r51154 r51518 347 347 * 348 348 * @param string[] $components Array of core components to load. 349 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.349 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 350 350 */ 351 351 $components = apply_filters( 'customize_loaded_components', $this->components, $this ); … … 692 692 * @since 3.4.0 693 693 * 694 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.694 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 695 695 */ 696 696 do_action( 'start_previewing_theme', $this ); … … 730 730 * @since 3.4.0 731 731 * 732 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.732 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 733 733 */ 734 734 do_action( 'stop_previewing_theme', $this ); … … 929 929 * @since 3.4.0 930 930 * 931 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.931 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 932 932 */ 933 933 do_action( 'customize_register', $this ); … … 1860 1860 * @since 4.4.0 1861 1861 * 1862 * @param mixed $value Unsanitized setting post value.1863 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.1862 * @param mixed $value Unsanitized setting post value. 1863 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 1864 1864 */ 1865 1865 do_action( "customize_post_value_set_{$setting_id}", $value, $this ); … … 1877 1877 * @param string $setting_id Setting ID. 1878 1878 * @param mixed $value Unsanitized setting post value. 1879 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.1879 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 1880 1880 */ 1881 1881 do_action( 'customize_post_value_set', $setting_id, $value, $this ); … … 1938 1938 * @since 3.4.0 1939 1939 * 1940 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.1940 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 1941 1941 */ 1942 1942 do_action( 'customize_preview_init', $this ); … … 2593 2593 * @param array $response Additional information passed back to the 'saved' 2594 2594 * event on `wp.customize`. 2595 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.2595 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 2596 2596 */ 2597 2597 $response = apply_filters( 'customize_save_response', $response, $this ); … … 2761 2761 * @since 4.6.0 2762 2762 * 2763 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.2763 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 2764 2764 */ 2765 2765 do_action( 'customize_save_validation_before', $this ); … … 4755 4755 * @since 4.2.0 4756 4756 * 4757 * @param string[] $nonces Array of refreshed nonces for save and4758 * preview actions.4759 * @param WP_Customize_Manager $ thisWP_Customize_Manager instance.4757 * @param string[] $nonces Array of refreshed nonces for save and 4758 * preview actions. 4759 * @param WP_Customize_Manager $manager WP_Customize_Manager instance. 4760 4760 */ 4761 4761 $nonces = apply_filters( 'customize_refresh_nonces', $nonces, $this ); -
trunk/src/wp-includes/class-wp-customize-panel.php
r48111 r51518 276 276 * @since 4.0.0 277 277 * 278 * @param WP_Customize_Panel $ thisWP_Customize_Panel instance.278 * @param WP_Customize_Panel $panel WP_Customize_Panel instance. 279 279 */ 280 280 do_action( 'customize_render_panel', $this ); -
trunk/src/wp-includes/class-wp-customize-section.php
r47386 r51518 299 299 * @since 3.4.0 300 300 * 301 * @param WP_Customize_Section $ thisWP_Customize_Section instance.301 * @param WP_Customize_Section $section WP_Customize_Section instance. 302 302 */ 303 303 do_action( 'customize_render_section', $this ); -
trunk/src/wp-includes/class-wp-customize-setting.php
r49946 r51518 395 395 * @since 3.4.0 396 396 * 397 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.397 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 398 398 */ 399 399 do_action( "customize_preview_{$this->id}", $this ); … … 407 407 * @since 4.1.0 408 408 * 409 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.409 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 410 410 */ 411 411 do_action( "customize_preview_{$this->type}", $this ); … … 534 534 * @since 3.4.0 535 535 * 536 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.536 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 537 537 */ 538 538 do_action( "customize_save_{$id_base}", $this ); … … 570 570 * @since 3.4.0 571 571 * 572 * @param mixed $value Value of the setting.573 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.572 * @param mixed $value Value of the setting. 573 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 574 574 */ 575 575 return apply_filters( "customize_sanitize_{$this->id}", $value, $this ); … … 698 698 * @since 3.4.0 699 699 * 700 * @param mixed $value Value of the setting.701 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.700 * @param mixed $value Value of the setting. 701 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 702 702 */ 703 703 do_action( "customize_update_{$this->type}", $value, $this ); -
trunk/src/wp-includes/class-wp-date-query.php
r51513 r51518 556 556 * 557 557 * @param string $where WHERE clause of the date query. 558 * @param WP_Date_Query $ thisThe WP_Date_Query instance.558 * @param WP_Date_Query $query The WP_Date_Query instance. 559 559 */ 560 560 return apply_filters( 'get_date_sql', $where, $this ); -
trunk/src/wp-includes/class-wp-meta-query.php
r50576 r51518 826 826 * @param array $clause First-order query clause. 827 827 * @param array $parent_query Parent of $clause. 828 * @param WP_Meta_Query $ thisWP_Meta_Query object.828 * @param WP_Meta_Query $query WP_Meta_Query object. 829 829 */ 830 830 return apply_filters( 'meta_query_find_compatible_table_alias', $alias, $clause, $parent_query, $this ); -
trunk/src/wp-includes/class-wp-network-query.php
r49946 r51518 159 159 * @since 4.6.0 160 160 * 161 * @param WP_Network_Query $ thisThe WP_Network_Query instance (passed by reference).161 * @param WP_Network_Query $query The WP_Network_Query instance (passed by reference). 162 162 */ 163 163 do_action_ref_array( 'parse_network_query', array( &$this ) ); … … 194 194 * @since 4.6.0 195 195 * 196 * @param WP_Network_Query $ thisCurrent instance of WP_Network_Query (passed by reference).196 * @param WP_Network_Query $query Current instance of WP_Network_Query (passed by reference). 197 197 */ 198 198 do_action_ref_array( 'pre_get_networks', array( &$this ) ); -
trunk/src/wp-includes/class-wp-rewrite.php
r51330 r51518 1454 1454 * @since 1.5.0 1455 1455 * 1456 * @param WP_Rewrite $ thisCurrent WP_Rewrite instance (passed by reference).1456 * @param WP_Rewrite $wp_rewrite Current WP_Rewrite instance (passed by reference). 1457 1457 */ 1458 1458 do_action_ref_array( 'generate_rewrite_rules', array( &$this ) ); -
trunk/src/wp-includes/class-wp-roles.php
r48586 r51518 297 297 * @since 4.7.0 298 298 * 299 * @param WP_Roles $ this A reference to the WP_Roles object.299 * @param WP_Roles $wp_roles A reference to the WP_Roles object. 300 300 */ 301 301 do_action( 'wp_roles_init', $this ); -
trunk/src/wp-includes/class-wp-site-query.php
r51184 r51518 235 235 * @since 4.6.0 236 236 * 237 * @param WP_Site_Query $ thisThe WP_Site_Query instance (passed by reference).237 * @param WP_Site_Query $query The WP_Site_Query instance (passed by reference). 238 238 */ 239 239 do_action_ref_array( 'parse_site_query', array( &$this ) ); … … 279 279 * @since 4.6.0 280 280 * 281 * @param WP_Site_Query $ thisCurrent instance of WP_Site_Query (passed by reference).281 * @param WP_Site_Query $query Current instance of WP_Site_Query (passed by reference). 282 282 */ 283 283 do_action_ref_array( 'pre_get_sites', array( &$this ) ); -
trunk/src/wp-includes/class-wp-term-query.php
r51301 r51518 281 281 * @since 4.6.0 282 282 * 283 * @param WP_Term_Query $ thisCurrent instance of WP_Term_Query.283 * @param WP_Term_Query $query Current instance of WP_Term_Query. 284 284 */ 285 285 do_action( 'parse_term_query', $this ); … … 355 355 * @since 4.6.0 356 356 * 357 * @param WP_Term_Query $ thisCurrent instance of WP_Term_Query (passed by reference).357 * @param WP_Term_Query $query Current instance of WP_Term_Query (passed by reference). 358 358 */ 359 359 do_action_ref_array( 'pre_get_terms', array( &$this ) ); -
trunk/src/wp-includes/class-wp.php
r50271 r51518 140 140 * 141 141 * @param bool $bool Whether or not to parse the request. Default true. 142 * @param WP $ thisCurrent WordPress environment instance.142 * @param WP $wp Current WordPress environment instance. 143 143 * @param array|string $extra_query_vars Extra passed query variables. 144 144 */ … … 384 384 * @since 2.1.0 385 385 * 386 * @param WP $ thisCurrent WordPress environment instance (passed by reference).386 * @param WP $wp Current WordPress environment instance (passed by reference). 387 387 */ 388 388 do_action_ref_array( 'parse_request', array( &$this ) ); … … 523 523 * @since 2.1.0 524 524 * 525 * @param WP $ thisCurrent WordPress environment instance (passed by reference).525 * @param WP $wp Current WordPress environment instance (passed by reference). 526 526 */ 527 527 do_action_ref_array( 'send_headers', array( &$this ) ); … … 759 759 * @since 2.1.0 760 760 * 761 * @param WP $ thisCurrent WordPress environment instance (passed by reference).761 * @param WP $wp Current WordPress environment instance (passed by reference). 762 762 */ 763 763 do_action_ref_array( 'wp', array( &$this ) ); -
trunk/src/wp-includes/class.wp-scripts.php
r50408 r51518 163 163 * @since 2.6.0 164 164 * 165 * @param WP_Scripts $ this WP_Scripts instance (passed by reference).165 * @param WP_Scripts $wp_scripts WP_Scripts instance (passed by reference). 166 166 */ 167 167 do_action_ref_array( 'wp_default_scripts', array( &$this ) ); -
trunk/src/wp-includes/class.wp-styles.php
r50451 r51518 131 131 * @since 2.6.0 132 132 * 133 * @param WP_Styles $ this WP_Styles instance (passed by reference).133 * @param WP_Styles $wp_styles WP_Styles instance (passed by reference). 134 134 */ 135 135 do_action_ref_array( 'wp_default_styles', array( &$this ) ); -
trunk/src/wp-includes/customize/class-wp-customize-selective-refresh.php
r49946 r51518 336 336 * @since 4.5.0 337 337 * 338 * @param WP_Customize_Selective_Refresh $ thisSelective refresh component.338 * @param WP_Customize_Selective_Refresh $refresh Selective refresh component. 339 339 * @param array $partials Placements' context data for the partials rendered in the request. 340 340 * The array is keyed by partial ID, with each item being an array of … … 385 385 * @since 4.5.0 386 386 * 387 * @param WP_Customize_Selective_Refresh $ thisSelective refresh component.387 * @param WP_Customize_Selective_Refresh $refresh Selective refresh component. 388 388 * @param array $partials Placements' context data for the partials rendered in the request. 389 389 * The array is keyed by partial ID, with each item being an array of -
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r50150 r51518 379 379 * @since 4.4.0 380 380 * 381 * @param string[] $order Array of types to check, in order of priority.382 * @param WP_REST_Request $ thisThe request object.381 * @param string[] $order Array of types to check, in order of priority. 382 * @param WP_REST_Request $request The request object. 383 383 */ 384 384 return apply_filters( 'rest_request_parameter_order', $order, $this );
Note: See TracChangeset
for help on using the changeset viewer.