Changeset 49599
- Timestamp:
- 11/14/2020 04:52:25 PM (4 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 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 */ -
trunk/src/wp-admin/includes/class-wp-list-table.php
r49197 r49599 1095 1095 1096 1096 /** 1097 * Gets a list of all, hidden and sortable columns, with filter applied.1097 * Gets a list of all, hidden, and sortable columns, with filter applied. 1098 1098 * 1099 1099 * @since 3.1.0 -
trunk/src/wp-admin/includes/deprecated.php
r49197 r49599 982 982 * @see WP_Screen::add_help_tab() 983 983 * 984 * @param string $screen The handle for the screen to add help to. This is usually the hook name returned by the add_*_page() functions. 984 * @param string $screen The handle for the screen to add help to. This is usually 985 * the hook name returned by the `add_*_page()` functions. 985 986 * @param string $help The content of an 'Overview' help tab. 986 987 */ -
trunk/src/wp-admin/includes/list-table.php
r49109 r49599 72 72 * @since 2.7.0 73 73 * 74 * @param string $screen The handle for the screen to add help to. This is usually the hook name returned by the 75 * add_*_page() functions. 76 * @param string[] $columns An array of columns with column IDs as the keys and translated column names as the values. 74 * @param string $screen The handle for the screen to register column headers for. This is 75 * usually the hook name returned by the `add_*_page()` functions. 76 * @param string[] $columns An array of columns with column IDs as the keys and translated 77 * column names as the values. 77 78 */ 78 79 function register_column_headers( $screen, $columns ) {
Note: See TracChangeset
for help on using the changeset viewer.