Changeset 35021 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 10/11/2015 03:33:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r34891 r35021 12 12 13 13 /** 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 17 18 * @var array 18 * @access public19 19 */ 20 20 public $items; 21 21 22 22 /** 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 26 27 * @var array 27 * @access protected28 28 */ 29 29 protected $_args; 30 30 31 31 /** 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 35 36 * @var array 36 37 */ … … 38 39 39 40 /** 40 * The current screen 41 * 42 * @since 3.1.0 41 * The current screen. 42 * 43 * @since 3.1.0 44 * @access protected 43 45 * @var object 44 * @access protected45 46 */ 46 47 protected $screen; 47 48 48 49 /** 49 * Cached bulk actions 50 * 51 * @since 3.1.0 50 * Cached bulk actions. 51 * 52 * @since 3.1.0 53 * @access private 52 54 * @var array 55 */ 56 private $_actions; 57 58 /** 59 * Cached pagination output. 60 * 61 * @since 3.1.0 53 62 * @access private 54 */55 private $_actions;56 57 /**58 * Cached pagination output59 *60 * @since 3.1.061 63 * @var string 62 * @access private63 64 */ 64 65 private $_pagination; … … 68 69 * 69 70 * @since 4.1.0 71 * @access protected 70 72 * @var array 71 * @access protected72 73 */ 73 74 protected $modes = array(); 74 75 75 76 /** 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 78 81 * @var array 79 82 */ 80 83 protected $_column_headers; 81 84 85 /** 86 * {@internal Missing Summary} 87 * 88 * @access protected 89 * @var array 90 */ 82 91 protected $compat_fields = array( '_args', '_pagination_args', 'screen', '_actions', '_pagination' ); 83 92 93 /** 94 * {@internal Missing Summary} 95 * 96 * @access protected 97 * @var array 98 */ 84 99 protected $compat_methods = array( 'set_pagination_args', 'get_views', 'get_bulk_actions', 'bulk_actions', 85 100 'row_actions', 'months_dropdown', 'view_switcher', 'comments_bubble', 'get_items_per_page', 'pagination',
Note: See TracChangeset
for help on using the changeset viewer.