get_pagenum(); parent::WP_List_Table( array( 'plural' => 'plugins', // @todo replace with themes and add css ) ); } function check_permissions() { if ( is_multisite() ) { $menu_perms = get_site_option( 'menu_items', array() ); if ( empty( $menu_perms['themes'] ) ) { if ( !is_super_admin() ) wp_die( __( 'Cheatin’ uh?' ) ); } } if ( !current_user_can('manage_network_themes') ) wp_die( __( 'You do not have sufficient permissions to manage themes for this site.' ) ); } function prepare_items() { global $status, $themes, $totals, $page, $orderby, $order, $s; wp_reset_vars( array( 'orderby', 'order', 's' ) ); $themes = array( 'all' => apply_filters( 'all_themes', get_themes() ), 'search' => array(), 'enabled' => array(), 'disabled' => array(), 'upgrade' => array() ); $allowed_themes = get_site_allowed_themes(); $current = get_site_transient( 'update_themes' ); foreach ( (array) $themes['all'] as $key => $theme ) { if ( array_key_exists( $theme['Template'], $allowed_themes ) ) { $themes['all'][$key]['enabled'] = true; $themes['enabled'][$key] = $themes['all'][$key]; } else { $themes['all'][$key]['enabled'] = false; $themes['disabled'][$key] = $themes['all'][$key]; } if ( isset( $current->response[ $theme['Template'] ] ) ) $themes['upgrade'][$key] = $themes['all'][$key]; } if ( !current_user_can( 'update_themes' ) ) $themes['upgrade'] = array(); if ( $s ) { $status = 'search'; $themes['search'] = array_filter( $themes['all'], array( &$this, '_search_callback' ) ); } $totals = array(); foreach ( $themes as $type => $list ) $totals[ $type ] = count( $list ); if ( empty( $themes[ $status ] ) && !in_array( $status, array( 'all', 'search' ) ) ) $status = 'all'; $this->items = $themes[ $status ]; $total_this_page = $totals[ $status ]; if ( $orderby ) { $orderby = ucfirst( $orderby ); $order = strtoupper( $order ); uasort( $this->items, array( &$this, '_order_callback' ) ); } $themes_per_page = $this->get_items_per_page( 'themes_network_per_page' ); $start = ( $page - 1 ) * $themes_per_page; if ( $total_this_page > $themes_per_page ) $this->items = array_slice( $this->items, $start, $themes_per_page ); $this->set_pagination_args( array( 'total_items' => $total_this_page, 'per_page' => $themes_per_page, ) ); } function _search_callback( $theme ) { static $term; if ( is_null( $term ) ) $term = stripslashes( $_REQUEST['s'] ); $search_fields = array( 'Name', 'Title', 'Description', 'Author', 'Author Name', 'Author URI', 'Template', 'Stylesheet' ); foreach ( $search_fields as $field ) if ( stripos( $theme[ $field ], $term ) !== false ) return true; return false; } function _order_callback( $theme_a, $theme_b ) { global $orderby, $order; $a = $theme_a[$orderby]; $b = $theme_b[$orderby]; if ( $a == $b ) return 0; if ( 'DESC' == $order ) return ( $a < $b ) ? 1 : -1; else return ( $a < $b ) ? -1 : 1; } function no_items() { global $themes; if ( !empty( $themes['all'] ) ) _e( 'No themes found.' ); else _e( 'You do not appear to have any themes available at this time.' ); } function get_columns() { global $status; return array( 'cb' => '', 'name' => __( 'Theme' ), 'description' => __( 'Description' ), ); } function get_sortable_columns() { return array( 'name' => 'name', ); } function get_views() { global $totals, $status; $status_links = array(); foreach ( $totals as $type => $count ) { if ( !$count ) continue; switch ( $type ) { case 'all': $text = _nx( 'All (%s)', 'All (%s)', $count, 'themes' ); break; case 'enabled': $text = _n( 'Enabled (%s)', 'Enabled (%s)', $count ); break; case 'disabled': $text = _n( 'Disabled (%s)', 'Disabled (%s)', $count ); break; case 'upgrade': $text = _n( 'Upgrade Available (%s)', 'Upgrade Available (%s)', $count ); break; case 'search': $text = _n( 'Search Results (%s)', 'Search Results (%s)', $count ); break; } $status_links[$type] = sprintf( "
' . $theme['Description'] . '
'; $theme_name = $theme['Name']; $id = sanitize_title( $theme_name ); echo "