From fb2a4bf9fb0c31a2f05a510c8143b4cdcc5f91ce Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 11 Oct 2015 03:34:26 +0000 Subject: [PATCH] Docs: Fix some syntactical issues in property DocBlocks for `WP_List_Table`. See #32246. Built from https://develop.svn.wordpress.org/trunk@35021 git-svn-id: http://core.svn.wordpress.org/trunk@34986 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-list-table.php | 41 ++++++++++++++++------- wp-includes/version.php | 2 +- 2 files changed, 29 insertions(+), 14 deletions(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index d0430614f7..f762511e19 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -11,55 +11,56 @@ class WP_List_Table { /** - * The current list of items + * The current list of items. * * @since 3.1.0 - * @var array * @access public + * @var array */ public $items; /** - * Various information about the current table + * Various information about the current table. * * @since 3.1.0 - * @var array * @access protected + * @var array */ protected $_args; /** - * Various information needed for displaying the pagination + * Various information needed for displaying the pagination. * * @since 3.1.0 + * @access protected * @var array */ protected $_pagination_args = array(); /** - * The current screen + * The current screen. * * @since 3.1.0 - * @var object * @access protected + * @var object */ protected $screen; /** - * Cached bulk actions + * Cached bulk actions. * * @since 3.1.0 - * @var array * @access private + * @var array */ private $_actions; /** - * Cached pagination output + * Cached pagination output. * * @since 3.1.0 - * @var string * @access private + * @var string */ private $_pagination; @@ -67,20 +68,34 @@ class WP_List_Table { * The view switcher modes. * * @since 4.1.0 - * @var array * @access protected + * @var array */ protected $modes = array(); /** - * Stores the value returned by ->get_column_info() + * Stores the value returned by ->get_column_info(). * + * @since 4.1.0 + * @access protected * @var array */ protected $_column_headers; + /** + * {@internal Missing Summary} + * + * @access protected + * @var array + */ protected $compat_fields = array( '_args', '_pagination_args', 'screen', '_actions', '_pagination' ); + /** + * {@internal Missing Summary} + * + * @access protected + * @var array + */ protected $compat_methods = array( 'set_pagination_args', 'get_views', 'get_bulk_actions', 'bulk_actions', 'row_actions', 'months_dropdown', 'view_switcher', 'comments_bubble', 'get_items_per_page', 'pagination', 'get_sortable_columns', 'get_column_info', 'get_table_classes', 'display_tablenav', 'extra_tablenav', diff --git a/wp-includes/version.php b/wp-includes/version.php index 7dc0489c23..60d541f04c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35020'; +$wp_version = '4.4-alpha-35021'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.