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
This commit is contained in:
Drew Jaynes 2015-10-11 03:34:26 +00:00
parent 85285d1701
commit fb2a4bf9fb
2 changed files with 29 additions and 14 deletions

View File

@ -11,55 +11,56 @@
class WP_List_Table { class WP_List_Table {
/** /**
* The current list of items * The current list of items.
* *
* @since 3.1.0 * @since 3.1.0
* @var array
* @access public * @access public
* @var array
*/ */
public $items; public $items;
/** /**
* Various information about the current table * Various information about the current table.
* *
* @since 3.1.0 * @since 3.1.0
* @var array
* @access protected * @access protected
* @var array
*/ */
protected $_args; protected $_args;
/** /**
* Various information needed for displaying the pagination * Various information needed for displaying the pagination.
* *
* @since 3.1.0 * @since 3.1.0
* @access protected
* @var array * @var array
*/ */
protected $_pagination_args = array(); protected $_pagination_args = array();
/** /**
* The current screen * The current screen.
* *
* @since 3.1.0 * @since 3.1.0
* @var object
* @access protected * @access protected
* @var object
*/ */
protected $screen; protected $screen;
/** /**
* Cached bulk actions * Cached bulk actions.
* *
* @since 3.1.0 * @since 3.1.0
* @var array
* @access private * @access private
* @var array
*/ */
private $_actions; private $_actions;
/** /**
* Cached pagination output * Cached pagination output.
* *
* @since 3.1.0 * @since 3.1.0
* @var string
* @access private * @access private
* @var string
*/ */
private $_pagination; private $_pagination;
@ -67,20 +68,34 @@ class WP_List_Table {
* The view switcher modes. * The view switcher modes.
* *
* @since 4.1.0 * @since 4.1.0
* @var array
* @access protected * @access protected
* @var array
*/ */
protected $modes = 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 * @var array
*/ */
protected $_column_headers; protected $_column_headers;
/**
* {@internal Missing Summary}
*
* @access protected
* @var array
*/
protected $compat_fields = array( '_args', '_pagination_args', 'screen', '_actions', '_pagination' ); 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', 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', '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', 'get_sortable_columns', 'get_column_info', 'get_table_classes', 'display_tablenav', 'extra_tablenav',

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.