'', 'plural' => '', 'singular' => '', 'ajax' => true ) ); $this->_screen = $args['screen']; if ( is_string( $this->_screen ) ) $this->_screen = convert_to_screen( $this->_screen ); add_filter( 'manage_' . $this->_screen->id . '_columns', array( &$this, 'get_columns' ), 0 ); if ( !$args['plural'] ) $args['plural'] = $this->_screen->base; $this->_args = $args; if ( $args['ajax'] ) { wp_enqueue_script( 'list-table' ); add_action( 'admin_footer', array( &$this, '_js_vars' ) ); } } /** * Checks the current user's permissions * @uses wp_die() * * @since 3.1.0 * @access public */ function check_permissions() { die( 'function WP_List_Table::check_permissions() must be over-ridden in a sub-class.' ); } /** * Prepares the list of items for displaying. * @uses WP_List_Table::set_pagination_args() * * @since 3.1.0 * @access public */ function prepare_items() { die( 'function WP_List_Table::prepare_items() must be over-ridden in a sub-class.' ); } /** * An internal method that sets all the necessary pagination arguments * * @param array $args An associative array with information about the pagination * @access protected */ function set_pagination_args( $args ) { $args = wp_parse_args( $args, array( 'query_var' => 'paged', 'total_items' => 0, 'total_pages' => 0, 'per_page' => 0, ) ); if ( !$args['total_pages'] && $args['per_page'] > 0 ) $args['total_pages'] = ceil( $args['total_items'] / $args['per_page'] ); $this->_pagination_args = $args; } /** * Access the pagination args * * @since 3.1.0 * @access public * * @param string $key * @return array */ function get_pagination_arg( $key ) { if ( 'page' == $key ) return $this->get_pagenum(); if ( isset( $this->_pagination_args[$key] ) ) return $this->_pagination_args[$key]; } /** * Whether the table has items to display or not * * @since 3.1.0 * @access public * * @return bool */ function has_items() { return !empty( $this->items ); } /** * Message to be displayed when there are no items * * @since 3.1.0 * @access public */ function no_items() { _e( 'No items found.' ); } /** * Get an associative array ( id => link ) with the list * of views available on this table. * * @since 3.1.0 * @access protected * * @return array */ function get_views() { return array(); } /** * Display the bulk actions dropdown. * * @since 3.1.0 * @access public */ function views() { $views = $this->get_views(); $views = apply_filters( 'views_' . $this->_screen->base, $views ); if ( empty( $views ) ) return; echo ""; } /** * Get an associative array ( option_name => option_title ) with the list * of bulk actions available on this table. * * @since 3.1.0 * @access protected * * @return array */ function get_bulk_actions() { return array(); } /** * Display the bulk actions dropdown. * * @since 3.1.0 * @access public */ function bulk_actions() { if ( is_null( $this->_actions ) ) { $this->_actions = $this->get_bulk_actions(); $this->_actions = apply_filters( 'bulk_actions-' . $this->_screen->base, $this->_actions ); $two = ''; } else { $two = '2'; } if ( empty( $this->_actions ) ) return; echo "\n"; submit_button( __( 'Apply' ), 'button-secondary action', "doaction$two", false ); echo "\n"; } /** * Get the current action selected from the bulk actions dropdown. * * @since 3.1.0 * @access public * * @return string|bool The action name or False if no action was selected */ function current_action() { if ( isset( $_REQUEST['action'] ) && -1 != $_REQUEST['action'] ) return $_REQUEST['action']; if ( isset( $_REQUEST['action2'] ) && -1 != $_REQUEST['action2'] ) return $_REQUEST['action2']; return false; } /** * Generate row actions div * * @since 3.1.0 * @access protected * * @param array $actions The list of actions * @param bool $always_visible Wether the actions should be always visible * @return string */ function row_actions( $actions, $always_visible = false ) { $action_count = count( $actions ); $i = 0; if ( !$action_count ) return ''; $out = '
'; foreach ( $actions as $action => $link ) { ++$i; ( $i == $action_count ) ? $sep = '' : $sep = ' | '; $out .= "$link$sep"; } $out .= '
'; return $out; } /** * Display a monthly dropdown for filtering items * * @since 3.1.0 * @access protected */ function months_dropdown( $post_type ) { global $wpdb, $wp_locale; $months = $wpdb->get_results( $wpdb->prepare( " SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month FROM $wpdb->posts WHERE post_type = %s ORDER BY post_date DESC ", $post_type ) ); $month_count = count( $months ); if ( !$month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) return; $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0; ?> __( 'List View' ), 'excerpt' => __( 'Excerpt View' ) ); ?>
$title ) { $class = ( $current_mode == $mode ) ? 'class="current"' : ''; echo "$title\n"; } ?>
'; $link = "%s"; comments_number( sprintf( $link, /* translators: comment count link */ _x( '0', 'comment count' ) ), sprintf( $link, /* translators: comment count link */ _x( '1', 'comment count' ) ), sprintf( $link, /* translators: comment count link: % will be substituted by comment count */ _x( '%', 'comment count' ) ) ); if ( $pending_comments ) echo ''; } /** * Get the current page number * * @since 3.1.0 * @access protected * * @return int */ function get_pagenum( $query_var = 'paged' ) { $pagenum = isset( $_REQUEST[$query_var] ) ? absint( $_REQUEST[$query_var] ) : 0; return max( 1, $pagenum ); } /** * Get number of items to display on a single page * * @since 3.1.0 * @access protected * * @return int */ function get_items_per_page( $option, $default = 20 ) { $per_page = (int) get_user_option( $option ); if ( empty( $per_page ) || $per_page < 1 ) $per_page = $default; return (int) apply_filters( $option, $per_page ); } /** * Display the pagination. * * @since 3.1.0 * @access protected */ function pagination() { if ( $this->_pagination ) { echo $this->_pagination; return; } if ( empty( $this->_pagination_args ) ) return; extract( $this->_pagination_args ); if ( $total_pages < 2 ) return; $output = '' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . ''; $current = $this->get_pagenum( $query_var ); $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; $page_links = array(); $page_links[] = sprintf( "%s", 'first-page', esc_attr__( 'Go to the first page' ), esc_url( remove_query_arg( $query_var, $current_url ) ), '««' ); $page_links[] = sprintf( "%s", 'prev-page', esc_attr__( 'Go to the previous page' ), esc_url( add_query_arg( $query_var, max( 1, $current-1 ), $current_url ) ), '«' ); $html_current_page = sprintf( "", esc_attr__( 'Current page' ), esc_attr( $query_var ), number_format_i18n( $current ), strlen( $total_pages ) ); $html_total_pages = sprintf( "%s", number_format_i18n( $total_pages ) ); $page_links[] = sprintf( _x( '%s of %s', 'paging' ), $html_current_page, $html_total_pages ); $page_links[] = sprintf( "%s", 'next-page', esc_attr__( 'Go to the next page' ), esc_url( add_query_arg( $query_var, min( $total_pages, $current+1 ), $current_url ) ), '»' ); $page_links[] = sprintf( "%s", 'last-page', esc_attr__( 'Go to the last page' ), esc_url( add_query_arg( $query_var, $total_pages, $current_url ) ), '»»' ); $output .= join( "\n", $page_links ); $this->_pagination = "
$output
"; echo $this->_pagination; } /** * Get a list of columns. The format is internal_name => title * * @since 3.1.0 * @access protected * * @return array */ function get_columns() { die( 'function WP_List_Table::get_columns() must be over-ridden in a sub-class.' ); } /** * Get a list of sortable columns. The format is internal_name => orderby * * @since 3.1.0 * @access protected * * @return array */ function get_sortable_columns() { return array(); } /** * Get a list of all, hidden and sortable columns, with filter applied * * @since 3.1.0 * @access protected * * @return array */ function get_column_info() { if ( !isset( $this->_column_headers ) ) { $columns = get_column_headers( $this->_screen ); $hidden = get_hidden_columns( $this->_screen ); $sortable = apply_filters( 'manage_' . $this->_screen->id . '_sortable_columns', $this->get_sortable_columns() ); $this->_column_headers = array( $columns, $hidden, $sortable ); } return $this->_column_headers; } /** * Print column headers, accounting for hidden and sortable columns. * * @since 3.1.0 * @access protected * * @param bool $with_id Whether to set the id attribute or not */ function print_column_headers( $with_id = true ) { $screen = $this->_screen; list( $columns, $hidden, $sortable ) = $this->get_column_info(); $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; if ( isset( $_GET['orderby'] ) ) $current_orderby = $_GET['orderby']; else $current_orderby = ''; if ( isset( $_GET['order'] ) && 'desc' == $_GET['order'] ) $current_order = 'desc'; else $current_order = 'asc'; foreach ( $columns as $column_key => $column_display_name ) { $class = array( 'manage-column', "column-$column_key" ); $style = ''; if ( in_array( $column_key, $hidden ) ) $style = 'display:none;'; $style = ' style="' . $style . '"'; if ( 'cb' == $column_key ) $class[] = 'check-column'; elseif ( in_array( $column_key, array( 'posts', 'comments', 'links' ) ) ) $class[] = 'num'; if ( isset( $sortable[$column_key] ) ) { $orderby = $sortable[$column_key]; if ( $current_orderby == $orderby ) { $order = 'asc' == $current_order ? 'desc' : 'asc'; $class[] = "sorted-$current_order"; } else { $order = 'asc'; $class[] = 'sortable'; } $column_display_name = '' . $column_display_name . ''; $column_display_name .= '
'; } $id = $with_id ? "id='$column_key'" : ''; if ( !empty( $class ) ) $class = "class='" . join( ' ', $class ) . "'"; echo "$column_display_name"; } } /** * Display the table or a message if there are no items * * @since 3.1.0 * @access public */ function display() { if ( $this->has_items() ) { $this->display_table(); } else { ?>

no_items(); ?>

tag * * @since 3.1.0 * @access protected * * @return array */ function get_table_classes() { extract( $this->_args ); return array( 'widefat', 'fixed', $plural ); } /** * Display the full table * * @since 3.1.0 * @access public */ function display_table() { extract( $this->_args ); $this->display_tablenav( 'top' ); ?> print_column_headers(); ?> print_column_headers( false ); ?> > display_rows(); ?>
display_tablenav( 'bottom' ); } /** * Generate the table navigation above or below the table * * @since 3.1.0 * @access protected */ function display_tablenav( $which ) { if ( 'top' == $which ) wp_nonce_field( 'bulk-' . $this->_args['plural'] ); ?>
bulk_actions( $which ); ?>
extra_tablenav( $which ); $this->pagination( $which ); ?>

part of the table * * @since 3.1.0 * @access protected */ function display_rows() { foreach ( $this->items as $item ) $this->single_row( $item ); } /** * Generates content for a single row of the table * * @since 3.1.0 * @access protected * * @param $object $item The current item */ function single_row( $item ) { static $row_class = ''; $row_class = ( $row_class == '' ? ' class="alternate"' : '' ); echo ''; echo $this->single_row_columns( $item ); echo ''; } /** * Generates the columns for a single row of the table * * @since 3.1.0 * @access protected * * @param $object $item The current item */ function single_row_columns( $item ) { list( $columns, $hidden ) = $this->get_column_info(); foreach ( $columns as $column_name => $column_display_name ) { $class = "class=\"$column_name column-$column_name\""; $style = ''; if ( in_array( $column_name, $hidden ) ) $style = ' style="display:none;"'; $attributes = "$class$style"; if ( 'cb' == $column_name ) { echo ''; echo $this->column_cb( $item ); echo ''; } elseif ( method_exists( $this, 'column_' . $column_name ) ) { echo ""; echo call_user_func( array( &$this, 'column_' . $column_name ), $item ); echo ""; } else { echo ""; echo $this->column_default( $item, $column_name ); echo ""; } } } /** * Handle an incoming ajax request (called from admin-ajax.php) * * @since 3.1.0 * @access public */ function ajax_response() { $this->check_permissions(); $this->prepare_items(); extract( $this->_args ); extract( $this->_pagination_args ); ob_start(); $this->display_rows(); $rows = ob_get_clean(); $response = array( 'rows' => $rows ); if ( isset( $total_items ) ) $response['total_items'] = sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ); if ( isset( $total_pages ) ) $response['total_pages'] = $total_pages; die( json_encode( $response ) ); } /** * Send required variables to JavaScript land * * @access private */ function _js_vars() { extract( $this->_args ); $class = get_class( $this ); printf( "\n", json_encode( compact( 'screen', 'class' ) ) ); } } /** * Fetch an instance of a WP_List_Table class. * * @since 3.1.0 * * @param string $class The type of the list table, which is the class name except for core list tables. * @return object|bool Object on success, false if the class does not exist. */ function get_list_table( $class ) { $class = apply_filters( "get_list_table_$class", $class ); require_list_table( $class ); if ( class_exists( $class ) ) return new $class; return false; } /** * Include the proper file for a core list table. * * Useful for extending a core class that would not otherwise be required. * * @since 3.1.0 * * @param string $table The core table to include. * @return bool True on success, false on failure. */ function require_list_table( $class ) { $core_classes = array( 'WP_Posts_Table' => 'posts', 'WP_Media_Table' => 'media', 'WP_Terms_Table' => 'terms', 'WP_Users_Table' => 'users', 'WP_Comments_Table' => 'comments', 'WP_Post_Comments_Table' => 'comments', 'WP_Links_Table' => 'links', 'WP_Sites_Table' => 'sites', 'WP_MS_Users_Table' => 'ms-users', 'WP_Plugins_Table' => 'plugins', 'WP_Plugin_Install_Table' => 'plugin-install', 'WP_Themes_Table' => 'themes', 'WP_Theme_Install_Table' => 'theme-install', 'WP_MS_Themes_Table' => 'ms-themes', ); if ( isset( $core_classes[ $class ] ) ) { require_once( ABSPATH . '/wp-admin/includes/list-table-' . $core_classes[ $class ] . '.php' ); return true; } return false; } ?>