mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Docs: Add missing description for the display_rows()
method in list table classes.
Follow-up to [15491], [17002], [27301]. Props nikitasolanki1812, narenin, mukesh27, dd32, SergeyBiryukov. Fixes #61670. Built from https://develop.svn.wordpress.org/trunk@58745 git-svn-id: http://core.svn.wordpress.org/trunk@58147 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4538fa7498
commit
51d8a8ea62
@ -307,6 +307,11 @@ class WP_Links_List_Table extends WP_List_Table {
|
|||||||
do_action( 'manage_link_custom_column', $column_name, $link->link_id );
|
do_action( 'manage_link_custom_column', $column_name, $link->link_id );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
foreach ( $this->items as $link ) {
|
foreach ( $this->items as $link ) {
|
||||||
$link = sanitize_bookmark( $link );
|
$link = sanitize_bookmark( $link );
|
||||||
|
@ -1718,7 +1718,7 @@ class WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates the table rows.
|
* Generates the list table rows.
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
|
@ -708,6 +708,10 @@ class WP_Media_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*
|
||||||
* @global WP_Post $post Global post object.
|
* @global WP_Post $post Global post object.
|
||||||
* @global WP_Query $wp_query WordPress Query object.
|
* @global WP_Query $wp_query WordPress Query object.
|
||||||
*/
|
*/
|
||||||
|
@ -611,7 +611,9 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @global string $mode List table view mode.
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
foreach ( $this->items as $blog ) {
|
foreach ( $this->items as $blog ) {
|
||||||
|
@ -494,6 +494,9 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
foreach ( $this->items as $theme ) {
|
foreach ( $this->items as $theme ) {
|
||||||
|
@ -470,6 +470,11 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
|||||||
echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID );
|
echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
foreach ( $this->items as $user ) {
|
foreach ( $this->items as $user ) {
|
||||||
$class = '';
|
$class = '';
|
||||||
|
@ -464,6 +464,11 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
$plugins_allowedtags = array(
|
$plugins_allowedtags = array(
|
||||||
'a' => array(
|
'a' => array(
|
||||||
|
@ -694,6 +694,10 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*
|
||||||
* @global string $status
|
* @global string $status
|
||||||
*/
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
|
@ -790,8 +790,13 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*
|
||||||
* @global WP_Query $wp_query WordPress Query object.
|
* @global WP_Query $wp_query WordPress Query object.
|
||||||
* @global int $per_page
|
* @global int $per_page
|
||||||
|
*
|
||||||
* @param array $posts
|
* @param array $posts
|
||||||
* @param int $level
|
* @param int $level
|
||||||
*/
|
*/
|
||||||
|
@ -230,6 +230,9 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
$themes = $this->items;
|
$themes = $this->items;
|
||||||
|
@ -189,6 +189,9 @@ class WP_Themes_List_Table extends WP_List_Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Generates the list table rows.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
public function display_rows() {
|
public function display_rows() {
|
||||||
$themes = $this->items;
|
$themes = $this->items;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.7-alpha-58744';
|
$wp_version = '6.7-alpha-58745';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user