Make WordPress Core

Changeset 35021


Ignore:
Timestamp:
10/11/2015 03:33:50 AM (11 years ago)
Author:
DrewAPicture
Message:

Docs: Fix some syntactical issues in property DocBlocks for WP_List_Table.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r34891 r35021  
    1212
    1313        /**
    14          * The current list of items
    15          *
    16          * @since 3.1.0
     14         * The current list of items.
     15         *
     16         * @since 3.1.0
     17         * @access public
    1718         * @var array
    18          * @access public
    1919         */
    2020        public $items;
    2121
    2222        /**
    23          * Various information about the current table
    24          *
    25          * @since 3.1.0
     23         * Various information about the current table.
     24         *
     25         * @since 3.1.0
     26         * @access protected
    2627         * @var array
    27          * @access protected
    2828         */
    2929        protected $_args;
    3030
    3131        /**
    32          * Various information needed for displaying the pagination
    33          *
    34          * @since 3.1.0
     32         * Various information needed for displaying the pagination.
     33         *
     34         * @since 3.1.0
     35         * @access protected
    3536         * @var array
    3637         */
     
    3839
    3940        /**
    40          * The current screen
    41          *
    42          * @since 3.1.0
     41         * The current screen.
     42         *
     43         * @since 3.1.0
     44         * @access protected
    4345         * @var object
    44          * @access protected
    4546         */
    4647        protected $screen;
    4748
    4849        /**
    49          * Cached bulk actions
    50          *
    51          * @since 3.1.0
     50         * Cached bulk actions.
     51         *
     52         * @since 3.1.0
     53         * @access private
    5254         * @var array
     55         */
     56        private $_actions;
     57
     58        /**
     59         * Cached pagination output.
     60         *
     61         * @since 3.1.0
    5362         * @access private
    54          */
    55         private $_actions;
    56 
    57         /**
    58          * Cached pagination output
    59          *
    60          * @since 3.1.0
    6163         * @var string
    62          * @access private
    6364         */
    6465        private $_pagination;
     
    6869         *
    6970         * @since 4.1.0
     71         * @access protected
    7072         * @var array
    71          * @access protected
    7273         */
    7374        protected $modes = array();
    7475
    7576        /**
    76          * Stores the value returned by ->get_column_info()
    77          *
     77         * Stores the value returned by ->get_column_info().
     78         *
     79         * @since 4.1.0
     80         * @access protected
    7881         * @var array
    7982         */
    8083        protected $_column_headers;
    8184
     85        /**
     86         * {@internal Missing Summary}
     87         *
     88         * @access protected
     89         * @var array
     90         */
    8291        protected $compat_fields = array( '_args', '_pagination_args', 'screen', '_actions', '_pagination' );
    8392
     93        /**
     94         * {@internal Missing Summary}
     95         *
     96         * @access protected
     97         * @var array
     98         */
    8499        protected $compat_methods = array( 'set_pagination_args', 'get_views', 'get_bulk_actions', 'bulk_actions',
    85100                'row_actions', 'months_dropdown', 'view_switcher', 'comments_bubble', 'get_items_per_page', 'pagination',
Note: See TracChangeset for help on using the changeset viewer.