38 if ( false === strpos( $referer, '/network/themes.php' ) ) |
38 if ( false === strpos( $referer, '/network/themes.php' ) ) |
39 wp_redirect( network_admin_url( 'themes.php?enabled=1' ) ); |
39 wp_redirect( network_admin_url( 'themes.php?enabled=1' ) ); |
40 else |
40 else |
41 wp_safe_redirect( add_query_arg( 'enabled', 1, $referer ) ); |
41 wp_safe_redirect( add_query_arg( 'enabled', 1, $referer ) ); |
42 exit; |
42 exit; |
43 break; |
|
44 case 'disable': |
43 case 'disable': |
45 check_admin_referer('disable-theme_' . $_GET['theme']); |
44 check_admin_referer('disable-theme_' . $_GET['theme']); |
46 unset( $allowed_themes[ $_GET['theme'] ] ); |
45 unset( $allowed_themes[ $_GET['theme'] ] ); |
47 update_site_option( 'allowedthemes', $allowed_themes ); |
46 update_site_option( 'allowedthemes', $allowed_themes ); |
48 wp_safe_redirect( add_query_arg( 'disabled', '1', $referer ) ); |
47 wp_safe_redirect( add_query_arg( 'disabled', '1', $referer ) ); |
49 exit; |
48 exit; |
50 break; |
|
51 case 'enable-selected': |
49 case 'enable-selected': |
52 check_admin_referer('bulk-themes'); |
50 check_admin_referer('bulk-themes'); |
53 $themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); |
51 $themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); |
54 if ( empty($themes) ) { |
52 if ( empty($themes) ) { |
55 wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
53 wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
88 $parent_file = 'themes.php'; |
84 $parent_file = 'themes.php'; |
89 |
85 |
90 require_once(ABSPATH . 'wp-admin/admin-header.php'); |
86 require_once(ABSPATH . 'wp-admin/admin-header.php'); |
91 |
87 |
92 echo '<div class="wrap">'; |
88 echo '<div class="wrap">'; |
93 screen_icon(); |
|
94 echo '<h2>' . esc_html( $title ) . '</h2>'; |
89 echo '<h2>' . esc_html( $title ) . '</h2>'; |
95 |
90 |
96 $url = self_admin_url('update.php?action=update-selected-themes&themes=' . urlencode( join(',', $themes) )); |
91 $url = self_admin_url('update.php?action=update-selected-themes&themes=' . urlencode( join(',', $themes) )); |
97 $url = wp_nonce_url($url, 'bulk-update-themes'); |
92 $url = wp_nonce_url($url, 'bulk-update-themes'); |
98 |
93 |
99 echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>"; |
94 echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>"; |
100 echo '</div>'; |
95 echo '</div>'; |
101 require_once(ABSPATH . 'wp-admin/admin-footer.php'); |
96 require_once(ABSPATH . 'wp-admin/admin-footer.php'); |
102 exit; |
97 exit; |
103 break; |
|
104 case 'delete-selected': |
98 case 'delete-selected': |
105 if ( ! current_user_can( 'delete_themes' ) ) |
99 if ( ! current_user_can( 'delete_themes' ) ) { |
106 wp_die( __('You do not have sufficient permissions to delete themes for this site.') ); |
100 wp_die( __('You do not have sufficient permissions to delete themes for this site.') ); |
|
101 } |
|
102 |
107 check_admin_referer( 'bulk-themes' ); |
103 check_admin_referer( 'bulk-themes' ); |
108 |
104 |
109 $themes = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array(); |
105 $themes = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array(); |
110 |
|
111 unset( $themes[ get_option( 'stylesheet' ) ], $themes[ get_option( 'template' ) ] ); |
|
112 |
106 |
113 if ( empty( $themes ) ) { |
107 if ( empty( $themes ) ) { |
114 wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
108 wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
115 exit; |
109 exit; |
116 } |
110 } |
117 |
111 |
|
112 $themes = array_diff( $themes, array( get_option( 'stylesheet' ), get_option( 'template' ) ) ); |
|
113 |
|
114 if ( empty( $themes ) ) { |
|
115 wp_safe_redirect( add_query_arg( 'error', 'main', $referer ) ); |
|
116 exit; |
|
117 } |
|
118 |
118 $files_to_delete = $theme_info = array(); |
119 $files_to_delete = $theme_info = array(); |
|
120 $theme_translations = wp_get_installed_translations( 'themes' ); |
119 foreach ( $themes as $key => $theme ) { |
121 foreach ( $themes as $key => $theme ) { |
120 $theme_info[ $theme ] = wp_get_theme( $theme ); |
122 $theme_info[ $theme ] = wp_get_theme( $theme ); |
121 $files_to_delete = array_merge( $files_to_delete, list_files( $theme_info[ $theme ]->get_stylesheet_directory() ) ); |
123 |
122 } |
124 // Locate all the files in that folder. |
123 |
125 $files = list_files( $theme_info[ $theme ]->get_stylesheet_directory() ); |
124 if ( empty( $themes ) ) { |
126 if ( $files ) { |
125 wp_safe_redirect( add_query_arg( 'error', 'main', $referer ) ); |
127 $files_to_delete = array_merge( $files_to_delete, $files ); |
126 exit; |
128 } |
|
129 |
|
130 // Add translation files. |
|
131 $theme_slug = $theme_info[ $theme ]->get_stylesheet(); |
|
132 if ( ! empty( $theme_translations[ $theme_slug ] ) ) { |
|
133 $translations = $theme_translations[ $theme_slug ]; |
|
134 |
|
135 foreach ( $translations as $translation => $data ) { |
|
136 $files_to_delete[] = $theme_slug . '-' . $translation . '.po'; |
|
137 $files_to_delete[] = $theme_slug . '-' . $translation . '.mo'; |
|
138 } |
|
139 } |
127 } |
140 } |
128 |
141 |
129 include(ABSPATH . 'wp-admin/update.php'); |
142 include(ABSPATH . 'wp-admin/update.php'); |
130 |
143 |
131 $parent_file = 'themes.php'; |
144 $parent_file = 'themes.php'; |
132 |
145 |
133 if ( ! isset( $_REQUEST['verify-delete'] ) ) { |
146 if ( ! isset( $_REQUEST['verify-delete'] ) ) { |
134 wp_enqueue_script( 'jquery' ); |
147 wp_enqueue_script( 'jquery' ); |
135 require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
148 require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
149 $themes_to_delete = count( $themes ); |
136 ?> |
150 ?> |
137 <div class="wrap"> |
151 <div class="wrap"> |
138 <?php |
152 <?php if ( 1 == $themes_to_delete ) : ?> |
139 $themes_to_delete = count( $themes ); |
153 <h2><?php _e( 'Delete Theme' ); ?></h2> |
140 screen_icon(); |
154 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'This theme may be active on other sites in the network.' ); ?></p></div> |
141 echo '<h2>' . _n( 'Delete Theme', 'Delete Themes', $themes_to_delete ) . '</h2>'; |
155 <p><?php _e( 'You are about to remove the following theme:' ); ?></p> |
142 ?> |
156 <?php else : ?> |
143 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php echo _n( 'This theme may be active on other sites in the network.', 'These themes may be active on other sites in the network.', $themes_to_delete ); ?></p></div> |
157 <h2><?php _e( 'Delete Themes' ); ?></h2> |
144 <p><?php echo _n( 'You are about to remove the following theme:', 'You are about to remove the following themes:', $themes_to_delete ); ?></p> |
158 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'These themes may be active on other sites in the network.' ); ?></p></div> |
|
159 <p><?php _e( 'You are about to remove the following themes:' ); ?></p> |
|
160 <?php endif; ?> |
145 <ul class="ul-disc"> |
161 <ul class="ul-disc"> |
146 <?php foreach ( $theme_info as $theme ) |
162 <?php |
147 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $theme->display('Name'), $theme->display('Author') ), '</li>'; /* translators: 1: theme name, 2: theme author */ ?> |
163 foreach ( $theme_info as $theme ) { |
|
164 /* translators: 1: theme name, 2: theme author */ |
|
165 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $theme->display('Name'), $theme->display('Author') ), '</li>'; |
|
166 } |
|
167 ?> |
148 </ul> |
168 </ul> |
149 <p><?php _e('Are you sure you wish to delete these themes?'); ?></p> |
169 <?php if ( 1 == $themes_to_delete ) : ?> |
|
170 <p><?php _e( 'Are you sure you wish to delete this theme?' ); ?></p> |
|
171 <?php else : ?> |
|
172 <p><?php _e( 'Are you sure you wish to delete these themes?' ); ?></p> |
|
173 <?php endif; ?> |
150 <form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;"> |
174 <form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;"> |
151 <input type="hidden" name="verify-delete" value="1" /> |
175 <input type="hidden" name="verify-delete" value="1" /> |
152 <input type="hidden" name="action" value="delete-selected" /> |
176 <input type="hidden" name="action" value="delete-selected" /> |
153 <?php |
177 <?php |
154 foreach ( (array) $themes as $theme ) |
178 foreach ( (array) $themes as $theme ) { |
155 echo '<input type="hidden" name="checked[]" value="' . esc_attr($theme) . '" />'; |
179 echo '<input type="hidden" name="checked[]" value="' . esc_attr($theme) . '" />'; |
|
180 } |
|
181 |
|
182 wp_nonce_field( 'bulk-themes' ); |
|
183 |
|
184 if ( 1 == $themes_to_delete ) { |
|
185 submit_button( __( 'Yes, Delete this theme' ), 'button', 'submit', false ); |
|
186 } else { |
|
187 submit_button( __( 'Yes, Delete these themes' ), 'button', 'submit', false ); |
|
188 } |
156 ?> |
189 ?> |
157 <?php wp_nonce_field('bulk-themes') ?> |
|
158 <?php submit_button( _n( 'Yes, Delete this theme', 'Yes, Delete these themes', $themes_to_delete ), 'button', 'submit', false ); ?> |
|
159 </form> |
190 </form> |
160 <form method="post" action="<?php echo esc_url(wp_get_referer()); ?>" style="display:inline;"> |
191 <?php |
|
192 $referer = wp_get_referer(); |
|
193 ?> |
|
194 <form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;"> |
161 <?php submit_button( __( 'No, Return me to the theme list' ), 'button', 'submit', false ); ?> |
195 <?php submit_button( __( 'No, Return me to the theme list' ), 'button', 'submit', false ); ?> |
162 </form> |
196 </form> |
163 |
197 |
164 <p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p> |
198 <p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p> |
165 <div id="files-list" style="display:none;"> |
199 <div id="files-list" style="display:none;"> |
166 <ul class="code"> |
200 <ul class="code"> |
167 <?php |
201 <?php |
168 foreach ( (array) $files_to_delete as $file ) |
202 foreach ( (array) $files_to_delete as $file ) { |
169 echo '<li>' . esc_html( str_replace( WP_CONTENT_DIR . "/themes", '', $file) ) . '</li>'; |
203 echo '<li>' . esc_html( str_replace( WP_CONTENT_DIR . '/themes', '', $file ) ) . '</li>'; |
|
204 } |
170 ?> |
205 ?> |
171 </ul> |
206 </ul> |
172 </div> |
207 </div> |
173 </div> |
208 </div> |
174 <?php |
209 <?php |
211 '<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>' |
245 '<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>' |
212 ) ); |
246 ) ); |
213 |
247 |
214 get_current_screen()->set_help_sidebar( |
248 get_current_screen()->set_help_sidebar( |
215 '<p><strong>' . __('For more information:') . '</strong></p>' . |
249 '<p><strong>' . __('For more information:') . '</strong></p>' . |
216 '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' . |
250 '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen" target="_blank">Documentation on Network Themes</a>') . '</p>' . |
217 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |
251 '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |
218 ); |
252 ); |
219 |
253 |
220 $title = __('Themes'); |
254 $title = __('Themes'); |
221 $parent_file = 'themes.php'; |
255 $parent_file = 'themes.php'; |
222 |
256 |
223 wp_enqueue_script( 'theme' ); |
257 wp_enqueue_script( 'theme-preview' ); |
224 |
258 |
225 require_once(ABSPATH . 'wp-admin/admin-header.php'); |
259 require_once(ABSPATH . 'wp-admin/admin-header.php'); |
226 |
260 |
227 ?> |
261 ?> |
228 |
262 |
229 <div class="wrap"> |
263 <div class="wrap"> |
230 <?php screen_icon('themes'); ?> |
|
231 <h2><?php echo esc_html( $title ); if ( current_user_can('install_themes') ) { ?> <a href="theme-install.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'theme'); ?></a><?php } |
264 <h2><?php echo esc_html( $title ); if ( current_user_can('install_themes') ) { ?> <a href="theme-install.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'theme'); ?></a><?php } |
232 if ( $s ) |
265 if ( $s ) |
233 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( $s ) ); ?> |
266 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( $s ) ); ?> |
234 </h2> |
267 </h2> |
235 |
268 |
236 <?php |
269 <?php |
237 if ( isset( $_GET['enabled'] ) ) { |
270 if ( isset( $_GET['enabled'] ) ) { |
238 $_GET['enabled'] = absint( $_GET['enabled'] ); |
271 $enabled = absint( $_GET['enabled'] ); |
239 echo '<div id="message" class="updated"><p>' . sprintf( _n( 'Theme enabled.', '%s themes enabled.', $_GET['enabled'] ), number_format_i18n( $_GET['enabled'] ) ) . '</p></div>'; |
272 if ( 1 == $enabled ) { |
|
273 $message = __( 'Theme enabled.' ); |
|
274 } else { |
|
275 $message = _n( '%s theme enabled.', '%s themes enabled.', $enabled ); |
|
276 } |
|
277 echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $enabled ) ) . '</p></div>'; |
240 } elseif ( isset( $_GET['disabled'] ) ) { |
278 } elseif ( isset( $_GET['disabled'] ) ) { |
241 $_GET['disabled'] = absint( $_GET['disabled'] ); |
279 $disabled = absint( $_GET['disabled'] ); |
242 echo '<div id="message" class="updated"><p>' . sprintf( _n( 'Theme disabled.', '%s themes disabled.', $_GET['disabled'] ), number_format_i18n( $_GET['disabled'] ) ) . '</p></div>'; |
280 if ( 1 == $disabled ) { |
|
281 $message = __( 'Theme disabled.' ); |
|
282 } else { |
|
283 $message = _n( '%s theme disabled.', '%s themes disabled.', $disabled ); |
|
284 } |
|
285 echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $disabled ) ) . '</p></div>'; |
243 } elseif ( isset( $_GET['deleted'] ) ) { |
286 } elseif ( isset( $_GET['deleted'] ) ) { |
244 $_GET['deleted'] = absint( $_GET['deleted'] ); |
287 $deleted = absint( $_GET['deleted'] ); |
245 echo '<div id="message" class="updated"><p>' . sprintf( _nx( 'Theme deleted.', '%s themes deleted.', $_GET['deleted'], 'network' ), number_format_i18n( $_GET['deleted'] ) ) . '</p></div>'; |
288 if ( 1 == $deleted ) { |
|
289 $message = __( 'Theme deleted.' ); |
|
290 } else { |
|
291 $message = _n( '%s theme deleted.', '%s themes deleted.', $deleted ); |
|
292 } |
|
293 echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $deleted ) ) . '</p></div>'; |
246 } elseif ( isset( $_GET['error'] ) && 'none' == $_GET['error'] ) { |
294 } elseif ( isset( $_GET['error'] ) && 'none' == $_GET['error'] ) { |
247 echo '<div id="message" class="error"><p>' . __( 'No theme selected.' ) . '</p></div>'; |
295 echo '<div id="message" class="error notice is-dismissible"><p>' . __( 'No theme selected.' ) . '</p></div>'; |
248 } elseif ( isset( $_GET['error'] ) && 'main' == $_GET['error'] ) { |
296 } elseif ( isset( $_GET['error'] ) && 'main' == $_GET['error'] ) { |
249 echo '<div class="error"><p>' . __( 'You cannot delete a theme while it is active on the main site.' ) . '</p></div>'; |
297 echo '<div class="error notice is-dismissible"><p>' . __( 'You cannot delete a theme while it is active on the main site.' ) . '</p></div>'; |
250 } |
298 } |
251 |
299 |
252 ?> |
300 ?> |
253 |
301 |
254 <form method="get" action=""> |
302 <form method="get"> |
255 <?php $wp_list_table->search_box( __( 'Search Installed Themes' ), 'theme' ); ?> |
303 <?php $wp_list_table->search_box( __( 'Search Installed Themes' ), 'theme' ); ?> |
256 </form> |
304 </form> |
257 |
305 |
258 <?php |
306 <?php |
259 $wp_list_table->views(); |
307 $wp_list_table->views(); |
260 |
308 |
261 if ( 'broken' == $status ) |
309 if ( 'broken' == $status ) |
262 echo '<p class="clear">' . __('The following themes are installed but incomplete. Themes must have a stylesheet and a template.') . '</p>'; |
310 echo '<p class="clear">' . __('The following themes are installed but incomplete. Themes must have a stylesheet and a template.') . '</p>'; |
263 ?> |
311 ?> |
264 |
312 |
265 <form method="post" action=""> |
313 <form method="post"> |
266 <input type="hidden" name="theme_status" value="<?php echo esc_attr($status) ?>" /> |
314 <input type="hidden" name="theme_status" value="<?php echo esc_attr($status) ?>" /> |
267 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" /> |
315 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" /> |
268 |
316 |
269 <?php $wp_list_table->display(); ?> |
317 <?php $wp_list_table->display(); ?> |
270 </form> |
318 </form> |