10
10
/** Load WordPress Administration Bootstrap */
11
11
require_once( dirname( __FILE__ ) . '/admin.php' );
13
if ( !current_user_can('manage_network_themes') )
13
if ( ! current_user_can( 'manage_network_themes' ) ) {
14
14
wp_die( __( 'Sorry, you are not allowed to manage network themes.' ) );
16
$wp_list_table = _get_list_table('WP_MS_Themes_List_Table');
17
$pagenum = $wp_list_table->get_pagenum();
17
$wp_list_table = _get_list_table( 'WP_MS_Themes_List_Table' );
18
$pagenum = $wp_list_table->get_pagenum();
19
20
$action = $wp_list_table->current_action();
21
$s = isset($_REQUEST['s']) ? $_REQUEST['s'] : '';
22
$s = isset( $_REQUEST['s'] ) ? $_REQUEST['s'] : '';
23
24
// Clean up request URI from temporary args for screen options/paging uri's to work as expected.
24
$temp_args = array( 'enabled', 'disabled', 'deleted', 'error' );
25
$temp_args = array( 'enabled', 'disabled', 'deleted', 'error' );
25
26
$_SERVER['REQUEST_URI'] = remove_query_arg( $temp_args, $_SERVER['REQUEST_URI'] );
26
$referer = remove_query_arg( $temp_args, wp_get_referer() );
27
$referer = remove_query_arg( $temp_args, wp_get_referer() );
29
30
switch ( $action ) {
31
check_admin_referer('enable-theme_' . $_GET['theme']);
32
check_admin_referer( 'enable-theme_' . $_GET['theme'] );
32
33
WP_Theme::network_enable_theme( $_GET['theme'] );
33
if ( false === strpos( $referer, '/network/themes.php' ) )
34
if ( false === strpos( $referer, '/network/themes.php' ) ) {
34
35
wp_redirect( network_admin_url( 'themes.php?enabled=1' ) );
36
37
wp_safe_redirect( add_query_arg( 'enabled', 1, $referer ) );
39
check_admin_referer('disable-theme_' . $_GET['theme']);
41
check_admin_referer( 'disable-theme_' . $_GET['theme'] );
40
42
WP_Theme::network_disable_theme( $_GET['theme'] );
41
43
wp_safe_redirect( add_query_arg( 'disabled', '1', $referer ) );
43
45
case 'enable-selected':
44
check_admin_referer('bulk-themes');
46
check_admin_referer( 'bulk-themes' );
45
47
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
46
if ( empty($themes) ) {
48
if ( empty( $themes ) ) {
47
49
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) );
51
53
wp_safe_redirect( add_query_arg( 'enabled', count( $themes ), $referer ) );
53
55
case 'disable-selected':
54
check_admin_referer('bulk-themes');
56
check_admin_referer( 'bulk-themes' );
55
57
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
56
if ( empty($themes) ) {
58
if ( empty( $themes ) ) {
57
59
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) );
60
62
WP_Theme::network_disable_theme( (array) $themes );
61
63
wp_safe_redirect( add_query_arg( 'disabled', count( $themes ), $referer ) );
63
case 'update-selected' :
65
case 'update-selected':
64
66
check_admin_referer( 'bulk-themes' );
66
if ( isset( $_GET['themes'] ) )
68
if ( isset( $_GET['themes'] ) ) {
67
69
$themes = explode( ',', $_GET['themes'] );
68
elseif ( isset( $_POST['checked'] ) )
70
} elseif ( isset( $_POST['checked'] ) ) {
69
71
$themes = (array) $_POST['checked'];
73
$title = __( 'Update Themes' );
76
$title = __( 'Update Themes' );
74
77
$parent_file = 'themes.php';
76
require_once(ABSPATH . 'wp-admin/admin-header.php');
79
require_once( ABSPATH . 'wp-admin/admin-header.php' );
78
81
echo '<div class="wrap">';
79
82
echo '<h1>' . esc_html( $title ) . '</h1>';
81
$url = self_admin_url('update.php?action=update-selected-themes&themes=' . urlencode( join(',', $themes) ));
82
$url = wp_nonce_url($url, 'bulk-update-themes');
84
$url = self_admin_url( 'update.php?action=update-selected-themes&themes=' . urlencode( join( ',', $themes ) ) );
85
$url = wp_nonce_url( $url, 'bulk-update-themes' );
84
87
echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>";
86
require_once(ABSPATH . 'wp-admin/admin-footer.php');
89
require_once( ABSPATH . 'wp-admin/admin-footer.php' );
88
91
case 'delete-selected':
89
92
if ( ! current_user_can( 'delete_themes' ) ) {
90
wp_die( __('Sorry, you are not allowed to delete themes for this site.') );
93
wp_die( __( 'Sorry, you are not allowed to delete themes for this site.' ) );
93
96
check_admin_referer( 'bulk-themes' );
133
136
<ul class="ul-disc">
135
foreach ( $theme_info as $theme ) {
136
echo '<li>' . sprintf(
137
/* translators: 1: theme name, 2: theme author */
138
_x( '%1$s by %2$s', 'theme' ),
139
'<strong>' . $theme->display( 'Name' ) . '</strong>',
140
'<em>' . $theme->display( 'Author' ) . '</em>'
138
foreach ( $theme_info as $theme ) {
139
echo '<li>' . sprintf(
140
/* translators: 1: theme name, 2: theme author */
141
_x( '%1$s by %2$s', 'theme' ),
142
'<strong>' . $theme->display( 'Name' ) . '</strong>',
143
'<em>' . $theme->display( 'Author' ) . '</em>'
145
148
<?php if ( 1 == $themes_to_delete ) : ?>
148
151
<p><?php _e( 'Are you sure you wish to delete these themes?' ); ?></p>
150
<form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;">
153
<form method="post" action="<?php echo esc_url( $_SERVER['REQUEST_URI'] ); ?>" style="display:inline;">
151
154
<input type="hidden" name="verify-delete" value="1" />
152
155
<input type="hidden" name="action" value="delete-selected" />
154
foreach ( (array) $themes as $theme ) {
155
echo '<input type="hidden" name="checked[]" value="' . esc_attr($theme) . '" />';
157
foreach ( (array) $themes as $theme ) {
158
echo '<input type="hidden" name="checked[]" value="' . esc_attr( $theme ) . '" />';
158
161
wp_nonce_field( 'bulk-themes' );
160
if ( 1 == $themes_to_delete ) {
161
submit_button( __( 'Yes, delete this theme' ), '', 'submit', false );
163
submit_button( __( 'Yes, delete these themes' ), '', 'submit', false );
163
if ( 1 == $themes_to_delete ) {
164
submit_button( __( 'Yes, delete this theme' ), '', 'submit', false );
166
submit_button( __( 'Yes, delete these themes' ), '', 'submit', false );
175
require_once(ABSPATH . 'wp-admin/admin-footer.php');
178
require_once( ABSPATH . 'wp-admin/admin-footer.php' );
177
180
} // Endif verify-delete
179
182
foreach ( $themes as $theme ) {
180
$delete_result = delete_theme( $theme, esc_url( add_query_arg( array(
181
'verify-delete' => 1,
182
'action' => 'delete-selected',
183
'checked' => $_REQUEST['checked'],
184
'_wpnonce' => $_REQUEST['_wpnonce']
185
), network_admin_url( 'themes.php' ) ) ) );
183
$delete_result = delete_theme(
188
'verify-delete' => 1,
189
'action' => 'delete-selected',
190
'checked' => $_REQUEST['checked'],
191
'_wpnonce' => $_REQUEST['_wpnonce'],
193
network_admin_url( 'themes.php' )
188
199
$paged = ( $_REQUEST['paged'] ) ? $_REQUEST['paged'] : 1;
189
wp_redirect( add_query_arg( array(
190
'deleted' => count( $themes ),
193
), network_admin_url( 'themes.php' ) ) );
203
'deleted' => count( $themes ),
207
network_admin_url( 'themes.php' )
196
212
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
216
231
add_screen_option( 'per_page' );
218
get_current_screen()->add_help_tab( array(
220
'title' => __('Overview'),
222
'<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>' .
223
'<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>' .
224
'<p>' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.') . '</p>'
233
get_current_screen()->add_help_tab(
236
'title' => __( 'Overview' ),
238
'<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>' .
239
'<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>' .
240
'<p>' . __( 'Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.' ) . '</p>',
227
244
get_current_screen()->set_help_sidebar(
228
'<p><strong>' . __('For more information:') . '</strong></p>' .
229
'<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen">Documentation on Network Themes</a>') . '</p>' .
230
'<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
233
get_current_screen()->set_screen_reader_content( array(
234
'heading_views' => __( 'Filter themes list' ),
235
'heading_pagination' => __( 'Themes list navigation' ),
236
'heading_list' => __( 'Themes list' ),
239
$title = __('Themes');
245
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
246
'<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen">Documentation on Network Themes</a>' ) . '</p>' .
247
'<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>'
250
get_current_screen()->set_screen_reader_content(
252
'heading_views' => __( 'Filter themes list' ),
253
'heading_pagination' => __( 'Themes list navigation' ),
254
'heading_list' => __( 'Themes list' ),
258
$title = __( 'Themes' );
240
259
$parent_file = 'themes.php';
242
261
wp_enqueue_script( 'updates' );
243
262
wp_enqueue_script( 'theme-preview' );
245
require_once(ABSPATH . 'wp-admin/admin-header.php');
264
require_once( ABSPATH . 'wp-admin/admin-header.php' );
303
322
$wp_list_table->views();
305
if ( 'broken' == $status )
324
if ( 'broken' == $status ) {
306
325
echo '<p class="clear">' . __( 'The following themes are installed but incomplete.' ) . '</p>';
309
329
<form id="bulk-action-form" method="post">
310
<input type="hidden" name="theme_status" value="<?php echo esc_attr($status) ?>" />
311
<input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
330
<input type="hidden" name="theme_status" value="<?php echo esc_attr( $status ); ?>" />
331
<input type="hidden" name="paged" value="<?php echo esc_attr( $page ); ?>" />
313
333
<?php $wp_list_table->display(); ?>