'', 'plural' => '', 'singular' => '', 'ajax' => true ) ); $this->_screen = $args['screen']; if ( is_string( $this->_screen ) ) $this->_screen = convert_to_screen( $this->_screen ); 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(); return @$this->_pagination_args[ $key ]; } /** * Wether 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 ( 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"; echo "\n"; } /** * 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' ) ); ?>
'; $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 = ' '; $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 = "'; $this->no_items(); echo '
'; } } /** * Get a list of CSS classes for the