Add `@access` tags to constructor docblocks in list table classes.
See #28679. See [29459]. Built from https://develop.svn.wordpress.org/trunk@29460 git-svn-id: http://core.svn.wordpress.org/trunk@29238 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8e86454467
commit
d60a081137
|
@ -25,6 +25,7 @@ class WP_Comments_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -13,6 +13,7 @@ class WP_Links_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -71,6 +71,7 @@ class WP_List_Table {
|
|||
* the default $args.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @param array|string $args {
|
||||
* Array or string of arguments.
|
||||
|
|
|
@ -13,6 +13,7 @@ class WP_Media_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -13,6 +13,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -16,6 +16,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -13,6 +13,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -49,11 +49,12 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
* @param array $args An associative array of arguments.
|
||||
*/
|
||||
*/
|
||||
public function __construct( $args = array() ) {
|
||||
global $post_type_object, $wpdb;
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -16,6 +16,7 @@ class WP_Themes_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
|
@ -32,6 +32,7 @@ class WP_Users_List_Table extends WP_List_Table {
|
|||
* Constructor.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @access public
|
||||
*
|
||||
* @see WP_List_Table::__construct() for more information on default arguments.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue