mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-10 23:54:33 +00:00
Docs: Further corrections and promotions for docblocks relating to object types.
See #50768 git-svn-id: https://develop.svn.wordpress.org/trunk@49197 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -62,11 +62,11 @@ class Walker_Category_Checklist extends Walker {
|
||||
*
|
||||
* @since 2.5.1
|
||||
*
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param object $category The current term object.
|
||||
* @param int $depth Depth of the term in reference to parents. Default 0.
|
||||
* @param array $args An array of arguments. @see wp_terms_checklist()
|
||||
* @param int $id ID of the current term.
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param WP_Term $category The current term object.
|
||||
* @param int $depth Depth of the term in reference to parents. Default 0.
|
||||
* @param array $args An array of arguments. @see wp_terms_checklist()
|
||||
* @param int $id ID of the current term.
|
||||
*/
|
||||
public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
|
||||
if ( empty( $args['taxonomy'] ) ) {
|
||||
@@ -121,10 +121,10 @@ class Walker_Category_Checklist extends Walker {
|
||||
*
|
||||
* @since 2.5.1
|
||||
*
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param object $category The current term object.
|
||||
* @param int $depth Depth of the term in reference to parents. Default 0.
|
||||
* @param array $args An array of arguments. @see wp_terms_checklist()
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param WP_Term $category The current term object.
|
||||
* @param int $depth Depth of the term in reference to parents. Default 0.
|
||||
* @param array $args An array of arguments. @see wp_terms_checklist()
|
||||
*/
|
||||
public function end_el( &$output, $category, $depth = 0, $args = array() ) {
|
||||
$output .= "</li>\n";
|
||||
|
||||
@@ -163,7 +163,7 @@ class WP_Application_Passwords_List_Table extends WP_List_Table {
|
||||
*
|
||||
* @since 5.6.0
|
||||
*
|
||||
* @param object $item The current item.
|
||||
* @param array $item The current item.
|
||||
*/
|
||||
public function single_row( $item ) {
|
||||
echo '<tr data-uuid="' . esc_attr( $item['uuid'] ) . '">';
|
||||
|
||||
@@ -1372,7 +1372,7 @@ class WP_List_Table {
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @param object $item The current item
|
||||
* @param object|array $item The current item
|
||||
*/
|
||||
public function single_row( $item ) {
|
||||
echo '<tr>';
|
||||
@@ -1381,13 +1381,13 @@ class WP_List_Table {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param object $item
|
||||
* @param object|array $item
|
||||
* @param string $column_name
|
||||
*/
|
||||
protected function column_default( $item, $column_name ) {}
|
||||
|
||||
/**
|
||||
* @param object $item
|
||||
* @param object|array $item
|
||||
*/
|
||||
protected function column_cb( $item ) {}
|
||||
|
||||
@@ -1396,7 +1396,7 @@ class WP_List_Table {
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @param object $item The current item.
|
||||
* @param object|array $item The current item.
|
||||
*/
|
||||
protected function single_row_columns( $item ) {
|
||||
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
|
||||
@@ -1448,9 +1448,9 @@ class WP_List_Table {
|
||||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param object $item The item being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @param object|array $item The item being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @return string The row actions HTML, or an empty string
|
||||
* if the current column is not the primary column.
|
||||
*/
|
||||
|
||||
@@ -664,7 +664,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param object $blog Site being acted upon.
|
||||
* @param array $blog Site being acted upon.
|
||||
* @param string $column_name Current column name.
|
||||
* @param string $primary Primary column name.
|
||||
* @return string Row actions output for sites in Multisite, or an empty string
|
||||
|
||||
@@ -1085,7 +1085,7 @@ function _media_button($title, $icon, $type, $id) {
|
||||
* @see get_post()
|
||||
*
|
||||
* @param int $id
|
||||
* @return object
|
||||
* @return WP_Post
|
||||
*/
|
||||
function get_post_to_edit( $id ) {
|
||||
_deprecated_function( __FUNCTION__, '3.5.0', 'get_post()' );
|
||||
|
||||
@@ -489,8 +489,8 @@ function default_password_nag_handler( $errors = false ) {
|
||||
/**
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @param int $user_ID
|
||||
* @param object $old_data
|
||||
* @param int $user_ID
|
||||
* @param WP_User $old_data
|
||||
*/
|
||||
function default_password_nag_edit_user( $user_ID, $old_data ) {
|
||||
// Short-circuit it.
|
||||
|
||||
Reference in New Issue
Block a user