- Timestamp:
- 11/14/2020 04:52:25 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table-compat.php
r42343 r49599 9 9 10 10 /** 11 * Helper class to be used only by back compat functions 11 * Helper class to be used only by back compat functions. 12 12 * 13 13 * @since 3.1.0 … … 17 17 public $_columns; 18 18 19 /** 20 * Constructor. 21 * 22 * @since 3.1.0 23 * 24 * @param string|WP_Screen $screen The screen hook name or screen object. 25 * @param string[] $columns An array of columns with column IDs as the keys 26 * and translated column names as the values. 27 */ 19 28 public function __construct( $screen, $columns = array() ) { 20 29 if ( is_string( $screen ) ) { … … 31 40 32 41 /** 42 * Gets a list of all, hidden, and sortable columns. 43 * 44 * @since 3.1.0 45 * 33 46 * @return array 34 47 */ … … 43 56 44 57 /** 58 * Gets a list of columns. 59 * 60 * @since 3.1.0 61 * 45 62 * @return array 46 63 */
Note: See TracChangeset
for help on using the changeset viewer.