Uses
| Uses | Description |
|---|---|
| wp-admin/includes/template.php: convert_to_screen() | Convert a screen string to a screen object |
| wp-includes/plugin.php: add_filter() | Hook a function or method to a specific filter action. |
File: wp-admin/includes/class-wp-list-table-compat.php
public function __construct( $screen, $columns = array() ) {
if ( is_string( $screen ) ) {
$screen = convert_to_screen( $screen );
}
$this->_screen = $screen;
if ( ! empty( $columns ) ) {
$this->_columns = $columns;
add_filter( 'manage_' . $screen->id . '_columns', array( $this, 'get_columns' ), 0 );
}
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/_wp_list_table_compat/__construct