2010-10-21 20:35:52 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2010-11-09 03:16:45 +01:00
|
|
|
* Edit Site Themes Administration Screen
|
2010-10-21 20:35:52 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-11-10 15:27:15 +01:00
|
|
|
* @subpackage Multisite
|
2010-10-21 20:35:52 +02:00
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
|
2010-11-10 15:27:15 +01:00
|
|
|
/** Load WordPress Administration Bootstrap */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once __DIR__ . '/admin.php';
|
2010-11-08 22:52:54 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! current_user_can( 'manage_sites' ) ) {
|
2016-06-29 17:16:29 +02:00
|
|
|
wp_die( __( 'Sorry, you are not allowed to manage themes for this site.' ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-12-15 20:24:42 +01:00
|
|
|
|
2017-07-17 22:53:45 +02:00
|
|
|
get_current_screen()->add_help_tab( get_site_screen_help_tab_args() );
|
|
|
|
get_current_screen()->set_help_sidebar( get_site_screen_help_sidebar_content() );
|
2010-12-16 07:52:47 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
get_current_screen()->set_screen_reader_content(
|
|
|
|
array(
|
|
|
|
'heading_views' => __( 'Filter site themes list' ),
|
|
|
|
'heading_pagination' => __( 'Site themes list navigation' ),
|
|
|
|
'heading_list' => __( 'Site themes list' ),
|
|
|
|
)
|
|
|
|
);
|
2015-10-07 03:28:25 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_list_table = _get_list_table( 'WP_MS_Themes_List_Table' );
|
2010-11-08 22:52:54 +01:00
|
|
|
|
|
|
|
$action = $wp_list_table->current_action();
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$s = isset( $_REQUEST['s'] ) ? $_REQUEST['s'] : '';
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2010-11-08 22:52:54 +01:00
|
|
|
// Clean up request URI from temporary args for screen options/paging uri's to work as expected.
|
2017-12-01 00:11:00 +01:00
|
|
|
$temp_args = array( 'enabled', 'disabled', 'error' );
|
2011-12-09 00:02:33 +01:00
|
|
|
$_SERVER['REQUEST_URI'] = remove_query_arg( $temp_args, $_SERVER['REQUEST_URI'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
$referer = remove_query_arg( $temp_args, wp_get_referer() );
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2014-03-25 17:57:15 +01:00
|
|
|
if ( ! empty( $_REQUEST['paged'] ) ) {
|
|
|
|
$referer = add_query_arg( 'paged', (int) $_REQUEST['paged'], $referer );
|
|
|
|
}
|
|
|
|
|
2020-10-08 23:15:13 +02:00
|
|
|
$id = isset( $_REQUEST['id'] ) ? (int) $_REQUEST['id'] : 0;
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $id ) {
|
|
|
|
wp_die( __( 'Invalid site ID.' ) );
|
|
|
|
}
|
2010-11-23 23:27:05 +01:00
|
|
|
|
2010-11-08 22:52:54 +01:00
|
|
|
$wp_list_table->prepare_items();
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2016-10-19 08:08:28 +02:00
|
|
|
$details = get_site( $id );
|
2015-07-09 18:29:24 +02:00
|
|
|
if ( ! $details ) {
|
|
|
|
wp_die( __( 'The requested site does not exist.' ) );
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! can_edit_network( $details->site_id ) ) {
|
2016-06-29 17:16:29 +02:00
|
|
|
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-21 20:35:52 +02:00
|
|
|
|
|
|
|
$is_main_site = is_main_site( $id );
|
|
|
|
|
2010-11-08 22:52:54 +01:00
|
|
|
if ( $action ) {
|
2010-10-21 20:35:52 +02:00
|
|
|
switch_to_blog( $id );
|
2010-11-08 22:52:54 +01:00
|
|
|
$allowed_themes = get_option( 'allowedthemes' );
|
|
|
|
|
|
|
|
switch ( $action ) {
|
|
|
|
case 'enable':
|
2010-12-24 18:59:58 +01:00
|
|
|
check_admin_referer( 'enable-theme_' . $_GET['theme'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
$theme = $_GET['theme'];
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'enabled';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = 1;
|
|
|
|
if ( ! $allowed_themes ) {
|
2010-11-08 22:52:54 +01:00
|
|
|
$allowed_themes = array( $theme => true );
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
|
|
|
$allowed_themes[ $theme ] = true;
|
|
|
|
}
|
2010-11-08 22:52:54 +01:00
|
|
|
break;
|
|
|
|
case 'disable':
|
2010-12-24 18:59:58 +01:00
|
|
|
check_admin_referer( 'disable-theme_' . $_GET['theme'] );
|
2017-12-01 00:11:00 +01:00
|
|
|
$theme = $_GET['theme'];
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'disabled';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = 1;
|
|
|
|
if ( ! $allowed_themes ) {
|
2010-11-08 22:52:54 +01:00
|
|
|
$allowed_themes = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
|
|
|
unset( $allowed_themes[ $theme ] );
|
|
|
|
}
|
2010-11-08 22:52:54 +01:00
|
|
|
break;
|
|
|
|
case 'enable-selected':
|
2010-12-24 18:59:58 +01:00
|
|
|
check_admin_referer( 'bulk-themes' );
|
2010-11-29 08:24:54 +01:00
|
|
|
if ( isset( $_POST['checked'] ) ) {
|
|
|
|
$themes = (array) $_POST['checked'];
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'enabled';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = count( $themes );
|
|
|
|
foreach ( (array) $themes as $theme ) {
|
2010-11-29 08:24:54 +01:00
|
|
|
$allowed_themes[ $theme ] = true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-29 08:24:54 +01:00
|
|
|
} else {
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'error';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = 'none';
|
2010-11-29 08:24:54 +01:00
|
|
|
}
|
2010-11-08 22:52:54 +01:00
|
|
|
break;
|
|
|
|
case 'disable-selected':
|
2010-12-24 18:59:58 +01:00
|
|
|
check_admin_referer( 'bulk-themes' );
|
2010-11-29 08:24:54 +01:00
|
|
|
if ( isset( $_POST['checked'] ) ) {
|
|
|
|
$themes = (array) $_POST['checked'];
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'disabled';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = count( $themes );
|
|
|
|
foreach ( (array) $themes as $theme ) {
|
2010-11-29 08:24:54 +01:00
|
|
|
unset( $allowed_themes[ $theme ] );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-29 08:24:54 +01:00
|
|
|
} else {
|
2010-12-25 09:19:29 +01:00
|
|
|
$action = 'error';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = 'none';
|
2010-11-29 08:24:54 +01:00
|
|
|
}
|
2010-11-08 22:52:54 +01:00
|
|
|
break;
|
2016-09-23 22:33:30 +02:00
|
|
|
default:
|
|
|
|
if ( isset( $_POST['checked'] ) ) {
|
|
|
|
check_admin_referer( 'bulk-themes' );
|
|
|
|
$themes = (array) $_POST['checked'];
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = count( $themes );
|
2016-12-14 05:18:42 +01:00
|
|
|
$screen = get_current_screen()->id;
|
|
|
|
|
2016-09-23 22:33:30 +02:00
|
|
|
/**
|
|
|
|
* Fires when a custom bulk action should be handled.
|
|
|
|
*
|
|
|
|
* The redirect link should be modified with success or failure feedback
|
|
|
|
* from the action to be used to display feedback to the user.
|
|
|
|
*
|
2016-12-14 05:18:42 +01:00
|
|
|
* The dynamic portion of the hook name, `$screen`, refers to the current screen ID.
|
|
|
|
*
|
2016-09-23 22:33:30 +02:00
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2016-10-26 16:37:29 +02:00
|
|
|
* @param string $redirect_url The redirect URL.
|
|
|
|
* @param string $action The action being taken.
|
|
|
|
* @param array $items The items to take the action on.
|
2016-12-14 05:18:42 +01:00
|
|
|
* @param int $site_id The site ID.
|
2016-09-23 22:33:30 +02:00
|
|
|
*/
|
2019-07-05 03:45:56 +02:00
|
|
|
$referer = apply_filters( "handle_network_bulk_actions-{$screen}", $referer, $action, $themes, $id ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
2016-09-23 22:33:30 +02:00
|
|
|
} else {
|
|
|
|
$action = 'error';
|
2017-12-01 00:11:00 +01:00
|
|
|
$n = 'none';
|
2016-09-23 22:33:30 +02:00
|
|
|
}
|
2010-10-21 20:35:52 +02:00
|
|
|
}
|
2011-11-15 03:24:30 +01:00
|
|
|
|
2010-11-08 22:52:54 +01:00
|
|
|
update_option( 'allowedthemes', $allowed_themes );
|
2010-10-21 20:35:52 +02:00
|
|
|
restore_current_blog();
|
2011-11-15 03:24:30 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_safe_redirect(
|
|
|
|
add_query_arg(
|
|
|
|
array(
|
|
|
|
'id' => $id,
|
|
|
|
$action => $n,
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
$referer
|
2017-12-01 00:11:00 +01:00
|
|
|
)
|
|
|
|
);
|
2011-11-15 03:24:30 +01:00
|
|
|
exit;
|
2010-10-21 20:35:52 +02:00
|
|
|
}
|
|
|
|
|
2020-05-24 11:17:09 +02:00
|
|
|
if ( isset( $_GET['action'] ) && 'update-site' === $_GET['action'] ) {
|
2011-12-10 19:26:48 +01:00
|
|
|
wp_safe_redirect( $referer );
|
2020-05-26 11:37:10 +02:00
|
|
|
exit;
|
2010-11-26 01:20:18 +01:00
|
|
|
}
|
|
|
|
|
2010-11-11 16:16:16 +01:00
|
|
|
add_thickbox();
|
2015-03-10 16:32:27 +01:00
|
|
|
add_screen_option( 'per_page' );
|
2011-10-02 08:59:36 +02:00
|
|
|
|
2021-07-22 15:53:00 +02:00
|
|
|
// Used in the HTML title tag.
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Site title. */
|
2015-07-13 02:27:24 +02:00
|
|
|
$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
|
2011-06-03 17:35:45 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$parent_file = 'sites.php';
|
2010-10-21 20:35:52 +02:00
|
|
|
$submenu_file = 'sites.php';
|
|
|
|
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . 'wp-admin/admin-header.php'; ?>
|
2010-10-21 20:35:52 +02:00
|
|
|
|
|
|
|
<div class="wrap">
|
2015-07-13 02:27:24 +02:00
|
|
|
<h1 id="edit-site"><?php echo $title; ?></h1>
|
2015-08-10 20:11:25 +02:00
|
|
|
<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
|
2010-10-21 20:35:52 +02:00
|
|
|
<?php
|
2016-05-19 23:48:30 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
network_edit_site_nav(
|
|
|
|
array(
|
|
|
|
'blog_id' => $id,
|
|
|
|
'selected' => 'site-themes',
|
|
|
|
)
|
|
|
|
);
|
2010-11-29 08:24:54 +01:00
|
|
|
|
2010-12-25 09:19:29 +01:00
|
|
|
if ( isset( $_GET['enabled'] ) ) {
|
2015-04-05 16:58:27 +02:00
|
|
|
$enabled = absint( $_GET['enabled'] );
|
2020-05-24 11:17:09 +02:00
|
|
|
if ( 1 === $enabled ) {
|
2015-04-05 16:58:27 +02:00
|
|
|
$message = __( 'Theme enabled.' );
|
|
|
|
} else {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of themes. */
|
2015-04-05 16:58:27 +02:00
|
|
|
$message = _n( '%s theme enabled.', '%s themes enabled.', $enabled );
|
|
|
|
}
|
|
|
|
echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $enabled ) ) . '</p></div>';
|
2011-12-09 00:02:33 +01:00
|
|
|
} elseif ( isset( $_GET['disabled'] ) ) {
|
2015-04-05 16:58:27 +02:00
|
|
|
$disabled = absint( $_GET['disabled'] );
|
2020-05-24 11:17:09 +02:00
|
|
|
if ( 1 === $disabled ) {
|
2015-04-05 16:58:27 +02:00
|
|
|
$message = __( 'Theme disabled.' );
|
|
|
|
} else {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of themes. */
|
2015-04-05 16:58:27 +02:00
|
|
|
$message = _n( '%s theme disabled.', '%s themes disabled.', $disabled );
|
|
|
|
}
|
|
|
|
echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $disabled ) ) . '</p></div>';
|
2020-05-24 11:17:09 +02:00
|
|
|
} elseif ( isset( $_GET['error'] ) && 'none' === $_GET['error'] ) {
|
2015-04-02 00:06:28 +02:00
|
|
|
echo '<div id="message" class="error notice is-dismissible"><p>' . __( 'No theme selected.' ) . '</p></div>';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
?>
|
2010-11-29 08:24:54 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<p><?php _e( 'Network enabled themes are not shown on this screen.' ); ?></p>
|
2010-11-08 22:52:54 +01:00
|
|
|
|
2015-01-16 05:16:24 +01:00
|
|
|
<form method="get">
|
2010-12-16 21:45:10 +01:00
|
|
|
<?php $wp_list_table->search_box( __( 'Search Installed Themes' ), 'theme' ); ?>
|
2017-12-01 00:11:00 +01:00
|
|
|
<input type="hidden" name="id" value="<?php echo esc_attr( $id ); ?>" />
|
2010-11-09 03:16:45 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php $wp_list_table->views(); ?>
|
2010-11-08 22:52:54 +01:00
|
|
|
|
2010-10-21 20:35:52 +02:00
|
|
|
<form method="post" action="site-themes.php?action=update-site">
|
2017-12-01 00:11:00 +01:00
|
|
|
<input type="hidden" name="id" value="<?php echo esc_attr( $id ); ?>" />
|
2010-10-21 20:35:52 +02:00
|
|
|
|
2010-11-08 22:52:54 +01:00
|
|
|
<?php $wp_list_table->display(); ?>
|
|
|
|
|
2010-10-21 20:35:52 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
2020-02-06 07:33:11 +01:00
|
|
|
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
|