author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
child 9 | 177826044cd9 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Multisite themes administration panel. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Multisite |
|
7 |
* @since 3.1.0 |
|
8 |
*/ |
|
9 |
||
10 |
/** Load WordPress Administration Bootstrap */ |
|
11 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
12 |
||
13 |
if ( !current_user_can('manage_network_themes') ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
wp_die( __( 'Sorry, you are not allowed to manage network themes.' ) ); |
0 | 15 |
|
16 |
$wp_list_table = _get_list_table('WP_MS_Themes_List_Table'); |
|
17 |
$pagenum = $wp_list_table->get_pagenum(); |
|
18 |
||
19 |
$action = $wp_list_table->current_action(); |
|
20 |
||
21 |
$s = isset($_REQUEST['s']) ? $_REQUEST['s'] : ''; |
|
22 |
||
23 |
// 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 |
$_SERVER['REQUEST_URI'] = remove_query_arg( $temp_args, $_SERVER['REQUEST_URI'] ); |
|
26 |
$referer = remove_query_arg( $temp_args, wp_get_referer() ); |
|
27 |
||
28 |
if ( $action ) { |
|
29 |
switch ( $action ) { |
|
30 |
case 'enable': |
|
31 |
check_admin_referer('enable-theme_' . $_GET['theme']); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
WP_Theme::network_enable_theme( $_GET['theme'] ); |
0 | 33 |
if ( false === strpos( $referer, '/network/themes.php' ) ) |
34 |
wp_redirect( network_admin_url( 'themes.php?enabled=1' ) ); |
|
35 |
else |
|
36 |
wp_safe_redirect( add_query_arg( 'enabled', 1, $referer ) ); |
|
37 |
exit; |
|
38 |
case 'disable': |
|
39 |
check_admin_referer('disable-theme_' . $_GET['theme']); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
WP_Theme::network_disable_theme( $_GET['theme'] ); |
0 | 41 |
wp_safe_redirect( add_query_arg( 'disabled', '1', $referer ) ); |
42 |
exit; |
|
43 |
case 'enable-selected': |
|
44 |
check_admin_referer('bulk-themes'); |
|
45 |
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); |
|
46 |
if ( empty($themes) ) { |
|
47 |
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
|
48 |
exit; |
|
49 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
WP_Theme::network_enable_theme( (array) $themes ); |
0 | 51 |
wp_safe_redirect( add_query_arg( 'enabled', count( $themes ), $referer ) ); |
52 |
exit; |
|
53 |
case 'disable-selected': |
|
54 |
check_admin_referer('bulk-themes'); |
|
55 |
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); |
|
56 |
if ( empty($themes) ) { |
|
57 |
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
|
58 |
exit; |
|
59 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
WP_Theme::network_disable_theme( (array) $themes ); |
0 | 61 |
wp_safe_redirect( add_query_arg( 'disabled', count( $themes ), $referer ) ); |
62 |
exit; |
|
63 |
case 'update-selected' : |
|
64 |
check_admin_referer( 'bulk-themes' ); |
|
65 |
||
66 |
if ( isset( $_GET['themes'] ) ) |
|
67 |
$themes = explode( ',', $_GET['themes'] ); |
|
68 |
elseif ( isset( $_POST['checked'] ) ) |
|
69 |
$themes = (array) $_POST['checked']; |
|
70 |
else |
|
71 |
$themes = array(); |
|
72 |
||
73 |
$title = __( 'Update Themes' ); |
|
74 |
$parent_file = 'themes.php'; |
|
75 |
||
76 |
require_once(ABSPATH . 'wp-admin/admin-header.php'); |
|
77 |
||
78 |
echo '<div class="wrap">'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
echo '<h1>' . esc_html( $title ) . '</h1>'; |
0 | 80 |
|
81 |
$url = self_admin_url('update.php?action=update-selected-themes&themes=' . urlencode( join(',', $themes) )); |
|
82 |
$url = wp_nonce_url($url, 'bulk-update-themes'); |
|
83 |
||
84 |
echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>"; |
|
85 |
echo '</div>'; |
|
86 |
require_once(ABSPATH . 'wp-admin/admin-footer.php'); |
|
87 |
exit; |
|
88 |
case 'delete-selected': |
|
5 | 89 |
if ( ! current_user_can( 'delete_themes' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
90 |
wp_die( __('Sorry, you are not allowed to delete themes for this site.') ); |
5 | 91 |
} |
92 |
||
0 | 93 |
check_admin_referer( 'bulk-themes' ); |
94 |
||
95 |
$themes = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array(); |
|
96 |
||
97 |
if ( empty( $themes ) ) { |
|
98 |
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
|
99 |
exit; |
|
100 |
} |
|
101 |
||
5 | 102 |
$themes = array_diff( $themes, array( get_option( 'stylesheet' ), get_option( 'template' ) ) ); |
0 | 103 |
|
104 |
if ( empty( $themes ) ) { |
|
105 |
wp_safe_redirect( add_query_arg( 'error', 'main', $referer ) ); |
|
106 |
exit; |
|
107 |
} |
|
108 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
$theme_info = array(); |
5 | 110 |
foreach ( $themes as $key => $theme ) { |
111 |
$theme_info[ $theme ] = wp_get_theme( $theme ); |
|
112 |
} |
|
113 |
||
0 | 114 |
include(ABSPATH . 'wp-admin/update.php'); |
115 |
||
116 |
$parent_file = 'themes.php'; |
|
117 |
||
118 |
if ( ! isset( $_REQUEST['verify-delete'] ) ) { |
|
119 |
wp_enqueue_script( 'jquery' ); |
|
120 |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
5 | 121 |
$themes_to_delete = count( $themes ); |
0 | 122 |
?> |
123 |
<div class="wrap"> |
|
5 | 124 |
<?php if ( 1 == $themes_to_delete ) : ?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
<h1><?php _e( 'Delete Theme' ); ?></h1> |
5 | 126 |
<div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'This theme may be active on other sites in the network.' ); ?></p></div> |
127 |
<p><?php _e( 'You are about to remove the following theme:' ); ?></p> |
|
128 |
<?php else : ?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
<h1><?php _e( 'Delete Themes' ); ?></h1> |
5 | 130 |
<div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'These themes may be active on other sites in the network.' ); ?></p></div> |
131 |
<p><?php _e( 'You are about to remove the following themes:' ); ?></p> |
|
132 |
<?php endif; ?> |
|
0 | 133 |
<ul class="ul-disc"> |
5 | 134 |
<?php |
135 |
foreach ( $theme_info as $theme ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
echo '<li>' . sprintf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
/* translators: 1: theme name, 2: theme author */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
_x( '%1$s by %2$s', 'theme' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
'<strong>' . $theme->display( 'Name' ) . '</strong>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
'<em>' . $theme->display( 'Author' ) . '</em>' |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
141 |
) . '</li>'; |
5 | 142 |
} |
143 |
?> |
|
0 | 144 |
</ul> |
5 | 145 |
<?php if ( 1 == $themes_to_delete ) : ?> |
146 |
<p><?php _e( 'Are you sure you wish to delete this theme?' ); ?></p> |
|
147 |
<?php else : ?> |
|
148 |
<p><?php _e( 'Are you sure you wish to delete these themes?' ); ?></p> |
|
149 |
<?php endif; ?> |
|
0 | 150 |
<form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;"> |
151 |
<input type="hidden" name="verify-delete" value="1" /> |
|
152 |
<input type="hidden" name="action" value="delete-selected" /> |
|
153 |
<?php |
|
5 | 154 |
foreach ( (array) $themes as $theme ) { |
0 | 155 |
echo '<input type="hidden" name="checked[]" value="' . esc_attr($theme) . '" />'; |
5 | 156 |
} |
157 |
||
158 |
wp_nonce_field( 'bulk-themes' ); |
|
159 |
||
160 |
if ( 1 == $themes_to_delete ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
161 |
submit_button( __( 'Yes, delete this theme' ), '', 'submit', false ); |
5 | 162 |
} else { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
163 |
submit_button( __( 'Yes, delete these themes' ), '', 'submit', false ); |
5 | 164 |
} |
0 | 165 |
?> |
166 |
</form> |
|
5 | 167 |
<?php |
168 |
$referer = wp_get_referer(); |
|
169 |
?> |
|
170 |
<form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
171 |
<?php submit_button( __( 'No, return me to the theme list' ), '', 'submit', false ); ?> |
0 | 172 |
</form> |
173 |
</div> |
|
174 |
<?php |
|
175 |
require_once(ABSPATH . 'wp-admin/admin-footer.php'); |
|
176 |
exit; |
|
177 |
} // Endif verify-delete |
|
178 |
||
179 |
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' ) ) ) ); |
|
186 |
} |
|
5 | 187 |
|
0 | 188 |
$paged = ( $_REQUEST['paged'] ) ? $_REQUEST['paged'] : 1; |
189 |
wp_redirect( add_query_arg( array( |
|
190 |
'deleted' => count( $themes ), |
|
191 |
'paged' => $paged, |
|
192 |
's' => $s |
|
193 |
), network_admin_url( 'themes.php' ) ) ); |
|
194 |
exit; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
195 |
default: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
196 |
$themes = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
197 |
if ( empty( $themes ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
198 |
wp_safe_redirect( add_query_arg( 'error', 'none', $referer ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
199 |
exit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
200 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
201 |
check_admin_referer( 'bulk-themes' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
202 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
203 |
/** This action is documented in wp-admin/network/site-themes.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
204 |
$referer = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $referer, $action, $themes ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
205 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
206 |
wp_safe_redirect( $referer ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
207 |
exit; |
0 | 208 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
|
0 | 210 |
} |
211 |
||
212 |
$wp_list_table->prepare_items(); |
|
213 |
||
214 |
add_thickbox(); |
|
215 |
||
5 | 216 |
add_screen_option( 'per_page' ); |
0 | 217 |
|
218 |
get_current_screen()->add_help_tab( array( |
|
219 |
'id' => 'overview', |
|
220 |
'title' => __('Overview'), |
|
221 |
'content' => |
|
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>' |
|
225 |
) ); |
|
226 |
||
227 |
get_current_screen()->set_help_sidebar( |
|
228 |
'<p><strong>' . __('For more information:') . '</strong></p>' . |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
229 |
'<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Themes_Screen">Documentation on Network Themes</a>') . '</p>' . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
230 |
'<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>' |
0 | 231 |
); |
232 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
get_current_screen()->set_screen_reader_content( array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
'heading_views' => __( 'Filter themes list' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
'heading_pagination' => __( 'Themes list navigation' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
'heading_list' => __( 'Themes list' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
237 |
) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
|
0 | 239 |
$title = __('Themes'); |
240 |
$parent_file = 'themes.php'; |
|
241 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
242 |
wp_enqueue_script( 'updates' ); |
5 | 243 |
wp_enqueue_script( 'theme-preview' ); |
0 | 244 |
|
245 |
require_once(ABSPATH . 'wp-admin/admin-header.php'); |
|
246 |
||
247 |
?> |
|
248 |
||
249 |
<div class="wrap"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
<h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
<?php if ( current_user_can( 'install_themes' ) ) : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
<a href="theme-install.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'theme' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
254 |
<?php endif; ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
255 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
256 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
257 |
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
/* translators: %s: search keywords */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
261 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
263 |
<hr class="wp-header-end"> |
0 | 264 |
|
265 |
<?php |
|
266 |
if ( isset( $_GET['enabled'] ) ) { |
|
5 | 267 |
$enabled = absint( $_GET['enabled'] ); |
268 |
if ( 1 == $enabled ) { |
|
269 |
$message = __( 'Theme enabled.' ); |
|
270 |
} else { |
|
271 |
$message = _n( '%s theme enabled.', '%s themes enabled.', $enabled ); |
|
272 |
} |
|
273 |
echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $enabled ) ) . '</p></div>'; |
|
0 | 274 |
} elseif ( isset( $_GET['disabled'] ) ) { |
5 | 275 |
$disabled = absint( $_GET['disabled'] ); |
276 |
if ( 1 == $disabled ) { |
|
277 |
$message = __( 'Theme disabled.' ); |
|
278 |
} else { |
|
279 |
$message = _n( '%s theme disabled.', '%s themes disabled.', $disabled ); |
|
280 |
} |
|
281 |
echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $disabled ) ) . '</p></div>'; |
|
0 | 282 |
} elseif ( isset( $_GET['deleted'] ) ) { |
5 | 283 |
$deleted = absint( $_GET['deleted'] ); |
284 |
if ( 1 == $deleted ) { |
|
285 |
$message = __( 'Theme deleted.' ); |
|
286 |
} else { |
|
287 |
$message = _n( '%s theme deleted.', '%s themes deleted.', $deleted ); |
|
288 |
} |
|
289 |
echo '<div id="message" class="updated notice is-dismissible"><p>' . sprintf( $message, number_format_i18n( $deleted ) ) . '</p></div>'; |
|
0 | 290 |
} elseif ( isset( $_GET['error'] ) && 'none' == $_GET['error'] ) { |
5 | 291 |
echo '<div id="message" class="error notice is-dismissible"><p>' . __( 'No theme selected.' ) . '</p></div>'; |
0 | 292 |
} elseif ( isset( $_GET['error'] ) && 'main' == $_GET['error'] ) { |
5 | 293 |
echo '<div class="error notice is-dismissible"><p>' . __( 'You cannot delete a theme while it is active on the main site.' ) . '</p></div>'; |
0 | 294 |
} |
295 |
||
296 |
?> |
|
297 |
||
5 | 298 |
<form method="get"> |
0 | 299 |
<?php $wp_list_table->search_box( __( 'Search Installed Themes' ), 'theme' ); ?> |
300 |
</form> |
|
301 |
||
302 |
<?php |
|
303 |
$wp_list_table->views(); |
|
304 |
||
305 |
if ( 'broken' == $status ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
306 |
echo '<p class="clear">' . __( 'The following themes are installed but incomplete.' ) . '</p>'; |
0 | 307 |
?> |
308 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
<form id="bulk-action-form" method="post"> |
0 | 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) ?>" /> |
|
312 |
||
313 |
<?php $wp_list_table->display(); ?> |
|
314 |
</form> |
|
315 |
||
316 |
</div> |
|
317 |
||
318 |
<?php |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
wp_print_request_filesystem_credentials_modal(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
wp_print_admin_notice_templates(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
321 |
wp_print_update_row_templates(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
322 |
|
0 | 323 |
include(ABSPATH . 'wp-admin/admin-footer.php'); |