X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/80b7979fccf09a75af3f4c111fa27060ae6dbf85..888fa4ed68091f3314f711c5f6fe75858bf5410b:/wp-admin/includes/list-table.php diff --git a/wp-admin/includes/list-table.php b/wp-admin/includes/list-table.php index 2dff578e..2403ec85 100644 --- a/wp-admin/includes/list-table.php +++ b/wp-admin/includes/list-table.php @@ -14,9 +14,10 @@ * @since 3.1.0 * * @param string $class The type of the list table, which is the class name. + * @param array $args Optional. Arguments to pass to the class. Accepts 'screen'. * @return object|bool Object on success, false if the class does not exist. */ -function _get_list_table( $class ) { +function _get_list_table( $class, $args = array() ) { $core_classes = array( //Site Admin 'WP_Posts_List_Table' => 'posts', @@ -39,7 +40,15 @@ function _get_list_table( $class ) { if ( isset( $core_classes[ $class ] ) ) { foreach ( (array) $core_classes[ $class ] as $required ) require_once( ABSPATH . 'wp-admin/includes/class-wp-' . $required . '-list-table.php' ); - return new $class; + + if ( isset( $args['screen'] ) ) + $args['screen'] = convert_to_screen( $args['screen'] ); + elseif ( isset( $GLOBALS['hook_suffix'] ) ) + $args['screen'] = get_current_screen(); + else + $args['screen'] = null; + + return new $class( $args ); } return false; @@ -86,7 +95,7 @@ class _WP_List_Table_Compat extends WP_List_Table { if ( !empty( $columns ) ) { $this->_columns = $columns; - add_filter( 'manage_' . $screen->id . '_columns', array( &$this, 'get_columns' ), 0 ); + add_filter( 'manage_' . $screen->id . '_columns', array( $this, 'get_columns' ), 0 ); } }