First pass at a new Network Admins page for Theme enable/disable/upgrade. See #14897 props PeteMall.
git-svn-id: https://develop.svn.wordpress.org/trunk@16113 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5dc465110a
commit
9cba32348d
@ -850,7 +850,7 @@ function require_list_table( $class ) {
|
||||
'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_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' );
|
||||
|
305
wp-admin/includes/list-table-ms-themes.php
Normal file
305
wp-admin/includes/list-table-ms-themes.php
Normal file
@ -0,0 +1,305 @@
|
||||
<?php
|
||||
/**
|
||||
* MS Themes List Table class.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage List_Table
|
||||
* @since 3.1.0
|
||||
*/
|
||||
class WP_MS_Themes_Table extends WP_List_Table {
|
||||
|
||||
function WP_MS_Themes_Table() {
|
||||
global $status, $page;
|
||||
|
||||
$default_status = get_user_option( 'themes_last_view' );
|
||||
if ( empty( $default_status ) )
|
||||
$default_status = 'all';
|
||||
$status = isset( $_REQUEST['theme_status'] ) ? $_REQUEST['theme_status'] : $default_status;
|
||||
if ( !in_array( $status, array( 'all', 'enabled', 'disabled', 'upgrade', 'search' ) ) )
|
||||
$status = 'all';
|
||||
if ( $status != $default_status && 'search' != $status )
|
||||
update_user_meta( get_current_user_id(), 'themes_last_view', $status );
|
||||
|
||||
$page = $this->get_pagenum();
|
||||
|
||||
parent::WP_List_Table( array(
|
||||
'screen' => 'themes',
|
||||
'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'; echo "opopop";
|
||||
$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_per_page', 999 );
|
||||
|
||||
$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'] );
|
||||
|
||||
foreach ( $theme as $key->$theme )
|
||||
if ( stripos( $key, $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' => '<input type="checkbox" />',
|
||||
'name' => __( 'Theme' ),
|
||||
'description' => __( 'Description' ),
|
||||
);
|
||||
}
|
||||
|
||||
function get_sortable_columns() {
|
||||
return array(
|
||||
'name' => 'name',
|
||||
);
|
||||
}
|
||||
|
||||
function display_tablenav( $which ) {
|
||||
global $status;
|
||||
|
||||
parent::display_tablenav( $which );
|
||||
}
|
||||
|
||||
function get_views() {
|
||||
global $totals, $status;
|
||||
|
||||
$status_links = array();
|
||||
foreach ( $totals as $type => $count ) {
|
||||
if ( !$count )
|
||||
continue;
|
||||
|
||||
switch ( $type ) {
|
||||
case 'all':
|
||||
$text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'themes' );
|
||||
break;
|
||||
case 'enabled':
|
||||
$text = _n( 'Enabled <span class="count">(%s)</span>', 'Enabled <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'disabled':
|
||||
$text = _n( 'Disabled <span class="count">(%s)</span>', 'Disabled <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'upgrade':
|
||||
$text = _n( 'Upgrade Available <span class="count">(%s)</span>', 'Upgrade Available <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'search':
|
||||
$text = _n( 'Search Results <span class="count">(%s)</span>', 'Search Results <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
}
|
||||
|
||||
$status_links[$type] = sprintf( "<li><a href='%s' %s>%s</a>",
|
||||
add_query_arg('theme_status', $type, 'themes.php'),
|
||||
( $type == $status ) ? ' class="current"' : '',
|
||||
sprintf( $text, number_format_i18n( $count ) )
|
||||
);
|
||||
}
|
||||
|
||||
return $status_links;
|
||||
}
|
||||
|
||||
function get_bulk_actions() {
|
||||
global $status;
|
||||
|
||||
$actions = array();
|
||||
if ( 'enabled' != $status )
|
||||
$actions['network-enable-selected'] = __( 'Network Enable' );
|
||||
if ( 'disabled' != $status )
|
||||
$actions['network-disable-selected'] = __( 'Network Disable' );
|
||||
if ( current_user_can( 'update_themes' ) )
|
||||
$actions['update-selected'] = __( 'Update' );
|
||||
|
||||
return $actions;
|
||||
}
|
||||
|
||||
function bulk_actions( $which ) {
|
||||
global $status;
|
||||
parent::bulk_actions( $which );
|
||||
}
|
||||
|
||||
function current_action() {
|
||||
return parent::current_action();
|
||||
}
|
||||
|
||||
function display_rows() {
|
||||
global $status, $page, $s;
|
||||
|
||||
$context = $status;
|
||||
|
||||
foreach ( $this->items as $key => $theme ) {
|
||||
// preorder
|
||||
$actions = array(
|
||||
'network_enable' => '',
|
||||
'network_disable' => '',
|
||||
'edit' => ''
|
||||
);
|
||||
|
||||
$theme_key = esc_html( $theme['Stylesheet'] );
|
||||
|
||||
if ( empty( $theme['enabled'] ) ) {
|
||||
if ( current_user_can( 'manage_network_themes' ) )
|
||||
$actions['network_enable'] = '<a href="' . wp_nonce_url('themes.php?action=network-enable&theme=' . $theme_key . '&paged=' . $page . '&s=' . $s, 'enable-theme_' . $theme_key) . '" title="' . __('Enable this theme for all sites in this network') . '" class="edit">' . __('Network Enable') . '</a>';
|
||||
} else {
|
||||
if ( current_user_can( 'manage_network_themes' ) )
|
||||
$actions['network_disable'] = '<a href="' . wp_nonce_url('themes.php?action=network-disable&theme=' . $theme_key . '&paged=' . $page . '&s=' . $s, 'disable-theme_' . $theme_key) . '" title="' . __('Disable this theme') . '">' . __('Network Disable') . '</a>';
|
||||
}
|
||||
|
||||
/* @todo link to theme editor
|
||||
if ( current_user_can('edit_themes') )
|
||||
$actions['edit'] = '<a href="theme-editor.php?file=' . $theme['Stylesheet Files'][0] . '" title="' . __('Open this theme in the Theme Editor') . '" class="edit">' . __('Edit') . '</a>';
|
||||
*/
|
||||
|
||||
$actions = apply_filters( 'theme_action_links', array_filter( $actions ), $theme_key, $theme, $context );
|
||||
$actions = apply_filters( "theme_action_links_$theme_key", $actions, $theme_key, $theme, $context );
|
||||
|
||||
$class = empty( $theme['enabled'] ) ? 'inactive' : 'active';
|
||||
$checkbox = "<input type='checkbox' name='checked[]' value='" . esc_attr( $theme_key ) . "' />";
|
||||
|
||||
$description = '<p>' . $theme['Description'] . '</p>';
|
||||
$theme_name = $theme['Name'];
|
||||
|
||||
|
||||
$id = sanitize_title( $theme_name );
|
||||
|
||||
echo "
|
||||
<tr id='$id' class='$class'>
|
||||
<th scope='row' class='check-column'>$checkbox</th>
|
||||
<td class='theme-title'><strong>$theme_name</strong></td>
|
||||
<td class='desc'>$description</td>
|
||||
</tr>
|
||||
<tr class='$class second'>
|
||||
<td></td>
|
||||
<td class='theme-title'>";
|
||||
|
||||
echo $this->row_actions( $actions, true );
|
||||
|
||||
echo "</td>
|
||||
<td class='desc'>";
|
||||
$theme_meta = array();
|
||||
if ( !empty( $theme['Version'] ) )
|
||||
$theme_meta[] = sprintf( __( 'Version %s' ), $theme['Version'] );
|
||||
if ( !empty( $theme['Author'] ) ) {
|
||||
$author = $theme['Author'];
|
||||
if ( !empty( $theme['Author URI'] ) )
|
||||
$author = '<a href="' . $theme['Author URI'] . '" title="' . __( 'Visit author homepage' ) . '">' . $theme['Author'] . '</a>';
|
||||
$theme_meta[] = sprintf( __( 'By %s' ), $author );
|
||||
}
|
||||
if ( !empty( $theme['Theme URI'] ) )
|
||||
$theme_meta[] = '<a href="' . $theme['Theme URI'] . '" title="' . __( 'Visit theme homepage' ) . '">' . __( 'Visit Theme Site' ) . '</a>';
|
||||
|
||||
$theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $theme_key, $theme, $status );
|
||||
echo implode( ' | ', $theme_meta );
|
||||
echo "</td>
|
||||
</tr>\n";
|
||||
|
||||
do_action( 'after_theme_row', $theme_key, $theme, $status );
|
||||
do_action( "after_theme_row_$theme_key", $theme_key, $theme, $status );
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
@ -4,94 +4,99 @@
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Multisite
|
||||
* @since 3.0.0
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
require_once( './admin.php' );
|
||||
|
||||
if ( ! current_user_can( 'manage_network_themes' ) )
|
||||
wp_die( __( 'You do not have permission to access this page.' ) );
|
||||
$wp_list_table = get_list_table('WP_MS_Themes_Table');
|
||||
$wp_list_table->check_permissions();
|
||||
|
||||
$title = __( 'Network Themes' );
|
||||
$parent_file = 'themes.php';
|
||||
$action = $wp_list_table->current_action();
|
||||
|
||||
add_contextual_help($current_screen,
|
||||
'<p>' . __('This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.') . '</p>' .
|
||||
'<p>' . __('If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.') . '</p>' .
|
||||
'<p>' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen you go to via the Edit action link on the Sites screen.') . '</p>' .
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Themes_SubPanel" target="_blank">Documentation on Network Themes</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
);
|
||||
$plugin = isset($_REQUEST['plugin']) ? $_REQUEST['plugin'] : '';
|
||||
$s = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
|
||||
|
||||
require_once( '../admin-header.php' );
|
||||
// Clean up request URI from temporary args for screen options/paging uri's to work as expected.
|
||||
$_SERVER['REQUEST_URI'] = remove_query_arg(array('error', 'deleted', 'activate', 'activate-multi', 'deactivate', 'deactivate-multi', '_error_nonce'), $_SERVER['REQUEST_URI']);
|
||||
|
||||
if ( isset( $_GET['updated'] ) ) {
|
||||
?>
|
||||
<div id="message" class="updated"><p><?php _e( 'Site themes saved.' ) ?></p></div>
|
||||
<?php
|
||||
if ( $action ) {
|
||||
$allowed_themes = get_site_option( 'allowedthemes' );
|
||||
switch ( $action ) {
|
||||
case 'network-enable':
|
||||
$allowed_themes[ $_GET['theme'] ] = 1;
|
||||
update_site_option( 'allowedthemes', $allowed_themes );
|
||||
wp_redirect( wp_get_referer() ); // @todo add_query_arg for update message
|
||||
exit;
|
||||
break;
|
||||
case 'network-disable':
|
||||
unset( $allowed_themes[ $_GET['theme'] ] );
|
||||
update_site_option( 'allowedthemes', $allowed_themes );
|
||||
wp_redirect( wp_get_referer() ); // @todo add_query_arg for update message
|
||||
exit;
|
||||
break;
|
||||
case 'network-enable-selected':
|
||||
check_admin_referer('bulk-plugins');
|
||||
|
||||
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
|
||||
if ( empty($themes) ) {
|
||||
wp_redirect( wp_get_referer() );
|
||||
exit;
|
||||
}
|
||||
foreach( (array) $themes as $theme )
|
||||
$allowed_themes[ $theme ] = 1;
|
||||
update_site_option( 'allowedthemes', $allowed_themes );
|
||||
break;
|
||||
case 'network-disable-selected':
|
||||
check_admin_referer('bulk-plugins');
|
||||
|
||||
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
|
||||
if ( empty($themes) ) {
|
||||
wp_redirect( wp_get_referer() );
|
||||
exit;
|
||||
}
|
||||
foreach( (array) $themes as $theme )
|
||||
unset( $allowed_themes[ $theme ] );
|
||||
update_site_option( 'allowedthemes', $allowed_themes );
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$themes = get_themes();
|
||||
$allowed_themes = get_site_allowed_themes();
|
||||
$wp_list_table->prepare_items();
|
||||
|
||||
add_screen_option( 'per_page', array('label' => _x( 'Themes', 'themes per page (screen options)' ), 'default' => 999) );
|
||||
|
||||
$title = __('Themes');
|
||||
$parent_file = 'themes.php';
|
||||
|
||||
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
||||
|
||||
?>
|
||||
|
||||
<div class="wrap">
|
||||
<form action="<?php echo esc_url( network_admin_url( 'edit.php?action=updatethemes' ) ); ?>" method="post">
|
||||
<?php screen_icon(); ?>
|
||||
<h2><?php _e( 'Network Themes' ) ?></h2>
|
||||
<p><?php _e( 'Themes must be enabled for your network before they will be available to individual sites.' ) ?></p>
|
||||
<?php submit_button( __( 'Apply Changes' ), '', '' ); ?>
|
||||
<table class="widefat">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:15%;"><?php _e( 'Enable' ) ?></th>
|
||||
<th style="width:25%;"><?php _e( 'Theme' ) ?></th>
|
||||
<th style="width:10%;"><?php _e( 'Version' ) ?></th>
|
||||
<th style="width:60%;"><?php _e( 'Description' ) ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="plugins">
|
||||
<?php
|
||||
$total_theme_count = $activated_themes_count = 0;
|
||||
$class = '';
|
||||
foreach ( (array) $themes as $key => $theme ) {
|
||||
$total_theme_count++;
|
||||
$theme_key = esc_html( $theme['Stylesheet'] );
|
||||
$class = ( 'alt' == $class ) ? '' : 'alt';
|
||||
$class1 = $enabled = $disabled = '';
|
||||
$enabled = $disabled = false;
|
||||
<?php screen_icon('themes'); ?>
|
||||
<h2><?php echo esc_html( $title ); if ( current_user_can('install_themes') ) { ?> <a href="theme-install.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'theme'); ?></a><?php } ?></h2>
|
||||
<p><?php _e( 'Themes must be enabled for your network before they will be available to individual sites.' ) ?></p>
|
||||
|
||||
if ( isset( $allowed_themes[$theme_key] ) == true ) {
|
||||
$enabled = true;
|
||||
$activated_themes_count++;
|
||||
$class1 = 'active';
|
||||
} else {
|
||||
$disabled = true;
|
||||
}
|
||||
?>
|
||||
<tr valign="top" class="<?php echo $class . ' ' . $class1; ?>">
|
||||
<td>
|
||||
<label><input name="theme[<?php echo $theme_key ?>]" type="radio" id="enabled_<?php echo $theme_key ?>" value="enabled" <?php checked( $enabled ) ?> /> <?php _e( 'Yes' ) ?></label>
|
||||
|
||||
<label><input name="theme[<?php echo $theme_key ?>]" type="radio" id="disabled_<?php echo $theme_key ?>" value="disabled" <?php checked( $disabled ) ?> /> <?php _e( 'No' ) ?></label>
|
||||
</td>
|
||||
<th scope="row" style="text-align:left;"><?php echo $key ?></th>
|
||||
<td><?php echo $theme['Version'] ?></td>
|
||||
<td><?php echo $theme['Description'] ?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php submit_button( __( 'Apply Changes' ), '', '' ); ?>
|
||||
</form>
|
||||
<form method="get" action="">
|
||||
<p class="search-box">
|
||||
<label class="screen-reader-text" for="theme-search-input"><?php _e( 'Search Themes' ); ?>:</label>
|
||||
<input type="text" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
||||
<?php submit_button( __( 'Search Installed Themes' ), 'button', '', false ); ?>
|
||||
</p>
|
||||
</form>
|
||||
|
||||
<?php $wp_list_table->views(); ?>
|
||||
|
||||
<form method="post" action="">
|
||||
<input type="hidden" name="theme_status" value="<?php echo esc_attr($status) ?>" />
|
||||
<input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
|
||||
|
||||
<?php $wp_list_table->display(); ?>
|
||||
</form>
|
||||
|
||||
<h3><?php _e( 'Total' )?></h3>
|
||||
<p>
|
||||
<?php printf( __( 'Themes Installed: %d' ), $total_theme_count); ?>
|
||||
<br />
|
||||
<?php printf( __( 'Themes Enabled: %d' ), $activated_themes_count); ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<?php include( '../admin-footer.php' ); ?>
|
||||
<?php
|
||||
include(ABSPATH . 'wp-admin/admin-footer.php');
|
Loading…
Reference in New Issue
Block a user