|
1 <?php |
|
2 /** |
|
3 * Theme Installer List Table class. |
|
4 * |
|
5 * @package WordPress |
|
6 * @subpackage List_Table |
|
7 * @since 3.1.0 |
|
8 * @access private |
|
9 */ |
|
10 class WP_Theme_Install_List_Table extends WP_Themes_List_Table { |
|
11 |
|
12 var $features = array(); |
|
13 |
|
14 function ajax_user_can() { |
|
15 return current_user_can( 'install_themes' ); |
|
16 } |
|
17 |
|
18 function prepare_items() { |
|
19 include( ABSPATH . 'wp-admin/includes/theme-install.php' ); |
|
20 |
|
21 global $tabs, $tab, $paged, $type, $theme_field_defaults; |
|
22 wp_reset_vars( array( 'tab' ) ); |
|
23 |
|
24 $search_terms = array(); |
|
25 $search_string = ''; |
|
26 if ( ! empty( $_REQUEST['s'] ) ){ |
|
27 $search_string = strtolower( wp_unslash( $_REQUEST['s'] ) ); |
|
28 $search_terms = array_unique( array_filter( array_map( 'trim', explode( ',', $search_string ) ) ) ); |
|
29 } |
|
30 |
|
31 if ( ! empty( $_REQUEST['features'] ) ) |
|
32 $this->features = $_REQUEST['features']; |
|
33 |
|
34 $paged = $this->get_pagenum(); |
|
35 |
|
36 $per_page = 36; |
|
37 |
|
38 // These are the tabs which are shown on the page, |
|
39 $tabs = array(); |
|
40 $tabs['dashboard'] = __( 'Search' ); |
|
41 if ( 'search' == $tab ) |
|
42 $tabs['search'] = __( 'Search Results' ); |
|
43 $tabs['upload'] = __( 'Upload' ); |
|
44 $tabs['featured'] = _x( 'Featured','Theme Installer' ); |
|
45 //$tabs['popular'] = _x( 'Popular','Theme Installer' ); |
|
46 $tabs['new'] = _x( 'Newest','Theme Installer' ); |
|
47 $tabs['updated'] = _x( 'Recently Updated','Theme Installer' ); |
|
48 |
|
49 $nonmenu_tabs = array( 'theme-information' ); // Valid actions to perform which do not have a Menu item. |
|
50 |
|
51 $tabs = apply_filters( 'install_themes_tabs', $tabs ); |
|
52 $nonmenu_tabs = apply_filters( 'install_themes_nonmenu_tabs', $nonmenu_tabs ); |
|
53 |
|
54 // If a non-valid menu tab has been selected, And it's not a non-menu action. |
|
55 if ( empty( $tab ) || ( ! isset( $tabs[ $tab ] ) && ! in_array( $tab, (array) $nonmenu_tabs ) ) ) |
|
56 $tab = key( $tabs ); |
|
57 |
|
58 $args = array( 'page' => $paged, 'per_page' => $per_page, 'fields' => $theme_field_defaults ); |
|
59 |
|
60 switch ( $tab ) { |
|
61 case 'search': |
|
62 $type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term'; |
|
63 switch ( $type ) { |
|
64 case 'tag': |
|
65 $args['tag'] = array_map( 'sanitize_key', $search_terms ); |
|
66 break; |
|
67 case 'term': |
|
68 $args['search'] = $search_string; |
|
69 break; |
|
70 case 'author': |
|
71 $args['author'] = $search_string; |
|
72 break; |
|
73 } |
|
74 |
|
75 if ( ! empty( $this->features ) ) { |
|
76 $args['tag'] = $this->features; |
|
77 $_REQUEST['s'] = implode( ',', $this->features ); |
|
78 $_REQUEST['type'] = 'tag'; |
|
79 } |
|
80 |
|
81 add_action( 'install_themes_table_header', 'install_theme_search_form', 10, 0 ); |
|
82 break; |
|
83 |
|
84 case 'featured': |
|
85 //case 'popular': |
|
86 case 'new': |
|
87 case 'updated': |
|
88 $args['browse'] = $tab; |
|
89 break; |
|
90 |
|
91 default: |
|
92 $args = false; |
|
93 break; |
|
94 } |
|
95 |
|
96 $args = apply_filters( 'install_themes_table_api_args_' . $tab, $args ); |
|
97 |
|
98 if ( ! $args ) |
|
99 return; |
|
100 |
|
101 $api = themes_api( 'query_themes', $args ); |
|
102 |
|
103 if ( is_wp_error( $api ) ) |
|
104 wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' ); |
|
105 |
|
106 $this->items = $api->themes; |
|
107 |
|
108 $this->set_pagination_args( array( |
|
109 'total_items' => $api->info['results'], |
|
110 'per_page' => $per_page, |
|
111 'infinite_scroll' => true, |
|
112 ) ); |
|
113 } |
|
114 |
|
115 function no_items() { |
|
116 _e( 'No themes match your request.' ); |
|
117 } |
|
118 |
|
119 function get_views() { |
|
120 global $tabs, $tab; |
|
121 |
|
122 $display_tabs = array(); |
|
123 foreach ( (array) $tabs as $action => $text ) { |
|
124 $class = ( $action == $tab ) ? ' class="current"' : ''; |
|
125 $href = self_admin_url('theme-install.php?tab=' . $action); |
|
126 $display_tabs['theme-install-'.$action] = "<a href='$href'$class>$text</a>"; |
|
127 } |
|
128 |
|
129 return $display_tabs; |
|
130 } |
|
131 |
|
132 function display() { |
|
133 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); |
|
134 ?> |
|
135 <div class="tablenav top themes"> |
|
136 <div class="alignleft actions"> |
|
137 <?php do_action( 'install_themes_table_header' ); ?> |
|
138 </div> |
|
139 <?php $this->pagination( 'top' ); ?> |
|
140 <br class="clear" /> |
|
141 </div> |
|
142 |
|
143 <div id="availablethemes"> |
|
144 <?php $this->display_rows_or_placeholder(); ?> |
|
145 </div> |
|
146 |
|
147 <?php |
|
148 parent::tablenav( 'bottom' ); |
|
149 } |
|
150 |
|
151 function display_rows() { |
|
152 $themes = $this->items; |
|
153 foreach ( $themes as $theme ) { |
|
154 ?> |
|
155 <div class="available-theme installable-theme"><?php |
|
156 $this->single_row( $theme ); |
|
157 ?></div> |
|
158 <?php } // end foreach $theme_names |
|
159 |
|
160 $this->theme_installer(); |
|
161 } |
|
162 |
|
163 /* |
|
164 * Prints a theme from the WordPress.org API. |
|
165 * |
|
166 * @param object $theme An object that contains theme data returned by the WordPress.org API. |
|
167 * |
|
168 * Example theme data: |
|
169 * object(stdClass)[59] |
|
170 * public 'name' => string 'Magazine Basic' |
|
171 * public 'slug' => string 'magazine-basic' |
|
172 * public 'version' => string '1.1' |
|
173 * public 'author' => string 'tinkerpriest' |
|
174 * public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' |
|
175 * public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' |
|
176 * public 'rating' => float 80 |
|
177 * public 'num_ratings' => int 1 |
|
178 * public 'homepage' => string 'http://wordpress.org/themes/magazine-basic' |
|
179 * public 'description' => string 'A basic magazine style layout with a fully customizable layout through a backend interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.' |
|
180 * public 'download_link' => string 'http://wordpress.org/themes/download/magazine-basic.1.1.zip' |
|
181 */ |
|
182 function single_row( $theme ) { |
|
183 global $themes_allowedtags; |
|
184 |
|
185 if ( empty( $theme ) ) |
|
186 return; |
|
187 |
|
188 $name = wp_kses( $theme->name, $themes_allowedtags ); |
|
189 $author = wp_kses( $theme->author, $themes_allowedtags ); |
|
190 |
|
191 $preview_title = sprintf( __('Preview “%s”'), $name ); |
|
192 $preview_url = add_query_arg( array( |
|
193 'tab' => 'theme-information', |
|
194 'theme' => $theme->slug, |
|
195 ) ); |
|
196 |
|
197 $actions = array(); |
|
198 |
|
199 $install_url = add_query_arg( array( |
|
200 'action' => 'install-theme', |
|
201 'theme' => $theme->slug, |
|
202 ), self_admin_url( 'update.php' ) ); |
|
203 |
|
204 $update_url = add_query_arg( array( |
|
205 'action' => 'upgrade-theme', |
|
206 'theme' => $theme->slug, |
|
207 ), self_admin_url( 'update.php' ) ); |
|
208 |
|
209 $status = $this->_get_theme_status( $theme ); |
|
210 |
|
211 switch ( $status ) { |
|
212 default: |
|
213 case 'install': |
|
214 $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>'; |
|
215 break; |
|
216 case 'update_available': |
|
217 $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>'; |
|
218 break; |
|
219 case 'newer_installed': |
|
220 case 'latest_installed': |
|
221 $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>'; |
|
222 break; |
|
223 } |
|
224 |
|
225 $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>'; |
|
226 |
|
227 $actions = apply_filters( 'theme_install_actions', $actions, $theme ); |
|
228 |
|
229 ?> |
|
230 <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>"> |
|
231 <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' /> |
|
232 </a> |
|
233 |
|
234 <h3><?php echo $name; ?></h3> |
|
235 <div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div> |
|
236 |
|
237 <div class="action-links"> |
|
238 <ul> |
|
239 <?php foreach ( $actions as $action ): ?> |
|
240 <li><?php echo $action; ?></li> |
|
241 <?php endforeach; ?> |
|
242 <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li> |
|
243 </ul> |
|
244 </div> |
|
245 |
|
246 <?php |
|
247 $this->install_theme_info( $theme ); |
|
248 } |
|
249 |
|
250 /* |
|
251 * Prints the wrapper for the theme installer. |
|
252 */ |
|
253 function theme_installer() { |
|
254 ?> |
|
255 <div id="theme-installer" class="wp-full-overlay expanded"> |
|
256 <div class="wp-full-overlay-sidebar"> |
|
257 <div class="wp-full-overlay-header"> |
|
258 <a href="#" class="close-full-overlay"><?php _e( '← Close' ); ?></a> |
|
259 </div> |
|
260 <div class="wp-full-overlay-sidebar-content"> |
|
261 <div class="install-theme-info"></div> |
|
262 </div> |
|
263 <div class="wp-full-overlay-footer"> |
|
264 <a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>"> |
|
265 <span class="collapse-sidebar-label"><?php _e('Collapse'); ?></span> |
|
266 <span class="collapse-sidebar-arrow"></span> |
|
267 </a> |
|
268 </div> |
|
269 </div> |
|
270 <div class="wp-full-overlay-main"></div> |
|
271 </div> |
|
272 <?php |
|
273 } |
|
274 |
|
275 /* |
|
276 * Prints the wrapper for the theme installer with a provided theme's data. |
|
277 * Used to make the theme installer work for no-js. |
|
278 * |
|
279 * @param object $theme - A WordPress.org Theme API object. |
|
280 */ |
|
281 function theme_installer_single( $theme ) { |
|
282 ?> |
|
283 <div id="theme-installer" class="wp-full-overlay single-theme"> |
|
284 <div class="wp-full-overlay-sidebar"> |
|
285 <?php $this->install_theme_info( $theme ); ?> |
|
286 </div> |
|
287 <div class="wp-full-overlay-main"> |
|
288 <iframe src="<?php echo esc_url( $theme->preview_url ); ?>"></iframe> |
|
289 </div> |
|
290 </div> |
|
291 <?php |
|
292 } |
|
293 |
|
294 /* |
|
295 * Prints the info for a theme (to be used in the theme installer modal). |
|
296 * |
|
297 * @param object $theme - A WordPress.org Theme API object. |
|
298 */ |
|
299 function install_theme_info( $theme ) { |
|
300 global $themes_allowedtags; |
|
301 |
|
302 if ( empty( $theme ) ) |
|
303 return; |
|
304 |
|
305 $name = wp_kses( $theme->name, $themes_allowedtags ); |
|
306 $author = wp_kses( $theme->author, $themes_allowedtags ); |
|
307 |
|
308 $num_ratings = sprintf( _n( '(based on %s rating)', '(based on %s ratings)', $theme->num_ratings ), number_format_i18n( $theme->num_ratings ) ); |
|
309 |
|
310 $install_url = add_query_arg( array( |
|
311 'action' => 'install-theme', |
|
312 'theme' => $theme->slug, |
|
313 ), self_admin_url( 'update.php' ) ); |
|
314 |
|
315 $update_url = add_query_arg( array( |
|
316 'action' => 'upgrade-theme', |
|
317 'theme' => $theme->slug, |
|
318 ), self_admin_url( 'update.php' ) ); |
|
319 |
|
320 $status = $this->_get_theme_status( $theme ); |
|
321 |
|
322 ?> |
|
323 <div class="install-theme-info"><?php |
|
324 switch ( $status ) { |
|
325 default: |
|
326 case 'install': |
|
327 echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>'; |
|
328 break; |
|
329 case 'update_available': |
|
330 echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>'; |
|
331 break; |
|
332 case 'newer_installed': |
|
333 case 'latest_installed': |
|
334 echo '<span class="theme-install" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>'; |
|
335 break; |
|
336 } ?> |
|
337 <h3 class="theme-name"><?php echo $name; ?></h3> |
|
338 <span class="theme-by"><?php printf( __( 'By %s' ), $author ); ?></span> |
|
339 <?php if ( isset( $theme->screenshot_url ) ): ?> |
|
340 <img class="theme-screenshot" src="<?php echo esc_url( $theme->screenshot_url ); ?>" /> |
|
341 <?php endif; ?> |
|
342 <div class="theme-details"> |
|
343 <div class="star-holder" title="<?php echo esc_attr( $num_ratings ); ?>"> |
|
344 <div class="star-rating" style="width:<?php echo esc_attr( intval( $theme->rating ) . 'px' ); ?>;"></div> |
|
345 </div> |
|
346 <div class="theme-version"> |
|
347 <strong><?php _e('Version:') ?> </strong> |
|
348 <?php echo wp_kses( $theme->version, $themes_allowedtags ); ?> |
|
349 </div> |
|
350 <div class="theme-description"> |
|
351 <?php echo wp_kses( $theme->description, $themes_allowedtags ); ?> |
|
352 </div> |
|
353 </div> |
|
354 <input class="theme-preview-url" type="hidden" value="<?php echo esc_url( $theme->preview_url ); ?>" /> |
|
355 </div> |
|
356 <?php |
|
357 } |
|
358 |
|
359 /** |
|
360 * Send required variables to JavaScript land |
|
361 * |
|
362 * @since 3.4 |
|
363 * @access private |
|
364 * |
|
365 * @uses $tab Global; current tab within Themes->Install screen |
|
366 * @uses $type Global; type of search. |
|
367 */ |
|
368 function _js_vars( $extra_args = array() ) { |
|
369 global $tab, $type; |
|
370 parent::_js_vars( compact( 'tab', 'type' ) ); |
|
371 } |
|
372 |
|
373 /** |
|
374 * Check to see if the theme is already installed. |
|
375 * |
|
376 * @since 3.4 |
|
377 * @access private |
|
378 * |
|
379 * @param object $theme - A WordPress.org Theme API object. |
|
380 * @return string Theme status. |
|
381 */ |
|
382 private function _get_theme_status( $theme ) { |
|
383 $status = 'install'; |
|
384 |
|
385 $installed_theme = wp_get_theme( $theme->slug ); |
|
386 if ( $installed_theme->exists() ) { |
|
387 if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) ) |
|
388 $status = 'latest_installed'; |
|
389 elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) ) |
|
390 $status = 'newer_installed'; |
|
391 else |
|
392 $status = 'update_available'; |
|
393 } |
|
394 |
|
395 return $status; |
|
396 } |
|
397 } |