Docs: Fix and upgrade various `object` docblock notations.
See #50768 Built from https://develop.svn.wordpress.org/trunk@49183 git-svn-id: http://core.svn.wordpress.org/trunk@48945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9d6a2d1c33
commit
c16ae60deb
|
@ -138,7 +138,7 @@ if ( isset( $tag->name ) ) {
|
|||
<th scope="row"><label for="slug"><?php _e( 'Slug' ); ?></label></th>
|
||||
<?php
|
||||
/**
|
||||
* Filters the editable slug.
|
||||
* Filters the editable slug for a post or term.
|
||||
*
|
||||
* Note: This is a multi-use hook in that it is leveraged both for editable
|
||||
* post URIs and term slugs.
|
||||
|
@ -148,7 +148,7 @@ if ( isset( $tag->name ) ) {
|
|||
*
|
||||
* @param string $slug The editable slug. Will be either a term slug or post URI depending
|
||||
* upon the context in which it is evaluated.
|
||||
* @param WP_Term|WP_Post $tag Term or WP_Post object.
|
||||
* @param WP_Term|WP_Post $tag Term or post object.
|
||||
*/
|
||||
$slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : '';
|
||||
?>
|
||||
|
|
|
@ -802,7 +802,7 @@ class WP_Media_List_Table extends WP_List_Table {
|
|||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param object $post Attachment being acted upon.
|
||||
* @param WP_Post $post Attachment being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @return string Row actions output for media attachments, or an empty string
|
||||
|
|
|
@ -490,7 +490,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
|||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param object $user User being acted upon.
|
||||
* @param WP_User $user User being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @return string Row actions output for users in Multisite, or an empty string
|
||||
|
|
|
@ -1321,7 +1321,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param object $post Post being acted upon.
|
||||
* @param WP_Post $post Post being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @return string Row actions output for posts, or an empty string
|
||||
|
|
|
@ -227,7 +227,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.1.0
|
||||
*
|
||||
* @param object $category Category Object
|
||||
* @param WP_Term $category Category Object
|
||||
*/
|
||||
function wxr_cat_name( $category ) {
|
||||
if ( empty( $category->name ) ) {
|
||||
|
@ -242,7 +242,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.1.0
|
||||
*
|
||||
* @param object $category Category Object
|
||||
* @param WP_Term $category Category Object
|
||||
*/
|
||||
function wxr_category_description( $category ) {
|
||||
if ( empty( $category->description ) ) {
|
||||
|
@ -257,7 +257,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.3.0
|
||||
*
|
||||
* @param object $tag Tag Object
|
||||
* @param WP_Term $tag Tag Object
|
||||
*/
|
||||
function wxr_tag_name( $tag ) {
|
||||
if ( empty( $tag->name ) ) {
|
||||
|
@ -272,7 +272,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.3.0
|
||||
*
|
||||
* @param object $tag Tag Object
|
||||
* @param WP_Term $tag Tag Object
|
||||
*/
|
||||
function wxr_tag_description( $tag ) {
|
||||
if ( empty( $tag->description ) ) {
|
||||
|
@ -287,7 +287,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.9.0
|
||||
*
|
||||
* @param object $term Term Object
|
||||
* @param WP_Term $term Term Object
|
||||
*/
|
||||
function wxr_term_name( $term ) {
|
||||
if ( empty( $term->name ) ) {
|
||||
|
@ -302,7 +302,7 @@ function export_wp( $args = array() ) {
|
|||
*
|
||||
* @since 2.9.0
|
||||
*
|
||||
* @param object $term Term Object
|
||||
* @param WP_Term $term Term Object
|
||||
*/
|
||||
function wxr_term_description( $term ) {
|
||||
if ( empty( $term->description ) ) {
|
||||
|
|
|
@ -2275,7 +2275,7 @@ function media_upload_form( $errors = null ) {
|
|||
* @since 2.5.0
|
||||
*
|
||||
* @param string $type
|
||||
* @param object $errors
|
||||
* @param array $errors
|
||||
* @param int|WP_Error $id
|
||||
*/
|
||||
function media_upload_type_form( $type = 'file', $errors = null, $id = null ) {
|
||||
|
|
|
@ -385,7 +385,7 @@ function post_submit_meta_box( $post, $args = array() ) {
|
|||
*
|
||||
* @since 3.5.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function attachment_submit_meta_box( $post ) {
|
||||
?>
|
||||
|
@ -695,7 +695,7 @@ function post_categories_meta_box( $post, $box ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_excerpt_meta_box( $post ) {
|
||||
?>
|
||||
|
@ -717,7 +717,7 @@ function post_excerpt_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_trackback_meta_box( $post ) {
|
||||
$form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="' .
|
||||
|
@ -758,7 +758,7 @@ function post_trackback_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_custom_meta_box( $post ) {
|
||||
?>
|
||||
|
@ -792,7 +792,7 @@ function post_custom_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_comment_status_meta_box( $post ) {
|
||||
?>
|
||||
|
@ -840,7 +840,7 @@ function post_comment_meta_box_thead( $result ) {
|
|||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_comment_meta_box( $post ) {
|
||||
wp_nonce_field( 'get-comments', 'add_comment_nonce', false );
|
||||
|
@ -881,7 +881,7 @@ function post_comment_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_slug_meta_box( $post ) {
|
||||
/** This filter is documented in wp-admin/edit-tag-form.php */
|
||||
|
@ -898,7 +898,7 @@ function post_slug_meta_box( $post ) {
|
|||
*
|
||||
* @global int $user_ID
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_author_meta_box( $post ) {
|
||||
global $user_ID;
|
||||
|
@ -921,7 +921,7 @@ function post_author_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.6.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function post_revisions_meta_box( $post ) {
|
||||
wp_list_post_revisions( $post );
|
||||
|
@ -936,7 +936,7 @@ function post_revisions_meta_box( $post ) {
|
|||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param object $post
|
||||
* @param WP_Post $post
|
||||
*/
|
||||
function page_attributes_meta_box( $post ) {
|
||||
if ( is_post_type_hierarchical( $post->post_type ) ) :
|
||||
|
|
|
@ -698,7 +698,7 @@ if ( ! function_exists( 'twentyeleven_comment' ) ) :
|
|||
*
|
||||
* @since Twenty Eleven 1.0
|
||||
*
|
||||
* @param object $comment The comment object.
|
||||
* @param WP_Comment $comment The comment object.
|
||||
* @param array $args An array of comment arguments. @see get_comment_reply_link()
|
||||
* @param int $depth The depth of the comment.
|
||||
*/
|
||||
|
|
|
@ -526,7 +526,7 @@ add_filter( 'body_class', 'twentyeleven_layout_classes' );
|
|||
*
|
||||
* @since Twenty Eleven 1.3
|
||||
*
|
||||
* @param object $wp_customize Customizer object.
|
||||
* @param WP_Customize_Manager $wp_customize Customizer object.
|
||||
*/
|
||||
function twentyeleven_customize_register( $wp_customize ) {
|
||||
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
|
||||
|
|
|
@ -120,7 +120,7 @@ add_filter( 'wp_get_attachment_image_attributes', 'twentynineteen_post_thumbnail
|
|||
/**
|
||||
* Add an extra menu to our nav for our priority+ navigation to use
|
||||
*
|
||||
* @param object $nav_menu Nav menu.
|
||||
* @param string $nav_menu Nav menu.
|
||||
* @param object $args Nav menu args.
|
||||
* @return string More link for hidden menu items.
|
||||
*/
|
||||
|
|
|
@ -410,7 +410,7 @@ if ( ! function_exists( 'twentyten_comment' ) ) :
|
|||
*
|
||||
* @since Twenty Ten 1.0
|
||||
*
|
||||
* @param object $comment The comment object.
|
||||
* @param WP_Comment $comment The comment object.
|
||||
* @param array $args An array of arguments. @see get_comment_reply_link()
|
||||
* @param int $depth The depth of the comment.
|
||||
*/
|
||||
|
|
|
@ -48,7 +48,7 @@ class Walker_CategoryDropdown extends Walker {
|
|||
* @see Walker::start_el()
|
||||
*
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param object $category Category data object.
|
||||
* @param WP_Term $category Category data object.
|
||||
* @param int $depth Depth of category. Used for padding.
|
||||
* @param array $args Uses 'selected', 'show_count', and 'value_field' keys, if they exist.
|
||||
* See wp_dropdown_categories().
|
||||
|
|
|
@ -90,7 +90,7 @@ class Walker_Category extends Walker {
|
|||
* @see Walker::start_el()
|
||||
*
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param object $category Category data object.
|
||||
* @param WP_Term $category Category data object.
|
||||
* @param int $depth Optional. Depth of category in reference to parents. Default 0.
|
||||
* @param array $args Optional. An array of arguments. See wp_list_categories(). Default empty array.
|
||||
* @param int $id Optional. ID of the current category. Default 0.
|
||||
|
@ -114,7 +114,7 @@ class Walker_Category extends Walker {
|
|||
* @since 1.2.0
|
||||
*
|
||||
* @param string $description Category description.
|
||||
* @param object $category Category object.
|
||||
* @param WP_Term $category Category object.
|
||||
*/
|
||||
$atts['title'] = strip_tags( apply_filters( 'category_description', $category->description, $category ) );
|
||||
}
|
||||
|
@ -227,8 +227,8 @@ class Walker_Category extends Walker {
|
|||
*
|
||||
* @see wp_list_categories()
|
||||
*
|
||||
* @param array $css_classes An array of CSS classes to be applied to each list item.
|
||||
* @param object $category Category data object.
|
||||
* @param string[] $css_classes An array of CSS classes to be applied to each list item.
|
||||
* @param WP_Term $category Category data object.
|
||||
* @param int $depth Depth of page, used for padding.
|
||||
* @param array $args An array of wp_list_categories() arguments.
|
||||
*/
|
||||
|
|
|
@ -743,7 +743,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
/**
|
||||
* Prepares taxonomy data for return in an XML-RPC object.
|
||||
*
|
||||
* @param object $taxonomy The unprepared taxonomy data.
|
||||
* @param WP_Taxonomy $taxonomy The unprepared taxonomy data.
|
||||
* @param array $fields The subset of taxonomy fields to return.
|
||||
* @return array The prepared taxonomy data.
|
||||
*/
|
||||
|
@ -1003,7 +1003,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
/**
|
||||
* Prepares media item data for return in an XML-RPC object.
|
||||
*
|
||||
* @param object $media_item The unprepared media item data.
|
||||
* @param WP_Post $media_item The unprepared media item data.
|
||||
* @param string $thumbnail_size The image size to use for the thumbnail URL.
|
||||
* @return array The prepared media item data.
|
||||
*/
|
||||
|
@ -1033,7 +1033,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
* @since 3.4.0
|
||||
*
|
||||
* @param array $_media_item An array of media item data.
|
||||
* @param object $media_item Media item object.
|
||||
* @param WP_Post $media_item Media item object.
|
||||
* @param string $thumbnail_size Image size.
|
||||
*/
|
||||
return apply_filters( 'xmlrpc_prepare_media_item', $_media_item, $media_item, $thumbnail_size );
|
||||
|
@ -1042,7 +1042,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
/**
|
||||
* Prepares page data for return in an XML-RPC object.
|
||||
*
|
||||
* @param object $page The unprepared page data.
|
||||
* @param WP_Post $page The unprepared page data.
|
||||
* @return array The prepared page data.
|
||||
*/
|
||||
protected function _prepare_page( $page ) {
|
||||
|
@ -1122,7 +1122,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
/**
|
||||
* Prepares comment data for return in an XML-RPC object.
|
||||
*
|
||||
* @param object $comment The unprepared comment data.
|
||||
* @param WP_Comment $comment The unprepared comment data.
|
||||
* @return array The prepared comment data.
|
||||
*/
|
||||
protected function _prepare_comment( $comment ) {
|
||||
|
|
|
@ -260,7 +260,7 @@ function get_blog_details( $fields = null, $get_all = true ) {
|
|||
* @since MU (3.0.0)
|
||||
* @deprecated 4.7.0 Use {@see 'site_details'} instead.
|
||||
*
|
||||
* @param object $details The blog details.
|
||||
* @param WP_Site $details The blog details.
|
||||
*/
|
||||
$details = apply_filters_deprecated( 'blog_details', array( $details ), '4.7.0', 'site_details' );
|
||||
|
||||
|
|
|
@ -407,7 +407,7 @@ function ms_load_current_site_and_network( $domain, $path, $subdomain = false )
|
|||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @param object $current_site The network that had been determined.
|
||||
* @param WP_Network $current_site The network that had been determined.
|
||||
* @param string $domain The domain used to search for a site.
|
||||
* @param string $path The path used to search for a site.
|
||||
*/
|
||||
|
|
|
@ -187,7 +187,7 @@ function _post_format_request( $qvs ) {
|
|||
* @global WP_Rewrite $wp_rewrite WordPress rewrite component.
|
||||
*
|
||||
* @param string $link
|
||||
* @param object $term
|
||||
* @param WP_Term $term
|
||||
* @param string $taxonomy
|
||||
* @return string
|
||||
*/
|
||||
|
|
|
@ -762,7 +762,7 @@ function get_users( $args = array() ) {
|
|||
* @param int $user_id User ID
|
||||
* @param bool $all Whether to retrieve all sites, or only sites that are not
|
||||
* marked as deleted, archived, or spam.
|
||||
* @return array A list of the user's sites. An empty array if the user doesn't exist
|
||||
* @return object[] A list of the user's sites. An empty array if the user doesn't exist
|
||||
* or belongs to no sites.
|
||||
*/
|
||||
function get_blogs_of_user( $user_id, $all = false ) {
|
||||
|
@ -783,7 +783,7 @@ function get_blogs_of_user( $user_id, $all = false ) {
|
|||
*
|
||||
* @since 4.6.0
|
||||
*
|
||||
* @param null|array $sites An array of site objects of which the user is a member.
|
||||
* @param null|object[] $sites An array of site objects of which the user is a member.
|
||||
* @param int $user_id User ID.
|
||||
* @param bool $all Whether the returned array should contain all sites, including
|
||||
* those marked 'deleted', 'archived', or 'spam'. Default false.
|
||||
|
@ -875,7 +875,7 @@ function get_blogs_of_user( $user_id, $all = false ) {
|
|||
*
|
||||
* @since MU (3.0.0)
|
||||
*
|
||||
* @param array $sites An array of site objects belonging to the user.
|
||||
* @param object[] $sites An array of site objects belonging to the user.
|
||||
* @param int $user_id User ID.
|
||||
* @param bool $all Whether the returned sites array should contain all sites, including
|
||||
* those marked 'deleted', 'archived', or 'spam'. Default false.
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-49182';
|
||||
$wp_version = '5.6-alpha-49183';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue