]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/plugin-install.php
WordPress 4.3.1
[autoinstalls/wordpress.git] / wp-admin / includes / plugin-install.php
1 <?php
2 /**
3  * WordPress Plugin Install Administration API
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Retrieve plugin installer pages from WordPress Plugins API.
11  *
12  * It is possible for a plugin to override the Plugin API result with three
13  * filters. Assume this is for plugins, which can extend on the Plugin Info to
14  * offer more choices. This is very powerful and must be used with care, when
15  * overriding the filters.
16  *
17  * The first filter, 'plugins_api_args', is for the args and gives the action as
18  * the second parameter. The hook for 'plugins_api_args' must ensure that an
19  * object is returned.
20  *
21  * The second filter, 'plugins_api', is the result that would be returned.
22  *
23  * @since 2.7.0
24  *
25  * @param string $action
26  * @param array|object $args Optional. Arguments to serialize for the Plugin Info API.
27  * @return object plugins_api response object on success, WP_Error on failure.
28  */
29 function plugins_api($action, $args = null) {
30
31         if ( is_array( $args ) ) {
32                 $args = (object) $args;
33         }
34
35         if ( ! isset( $args->per_page ) ) {
36                 $args->per_page = 24;
37         }
38
39         if ( ! isset( $args->locale ) ) {
40                 $args->locale = get_locale();
41         }
42
43         /**
44          * Override the Plugin Install API arguments.
45          *
46          * Please ensure that an object is returned.
47          *
48          * @since 2.7.0
49          *
50          * @param object $args   Plugin API arguments.
51          * @param string $action The type of information being requested from the Plugin Install API.
52          */
53         $args = apply_filters( 'plugins_api_args', $args, $action );
54
55         /**
56          * Allows a plugin to override the WordPress.org Plugin Install API entirely.
57          *
58          * Please ensure that an object is returned.
59          *
60          * @since 2.7.0
61          *
62          * @param bool|object $result The result object. Default false.
63          * @param string      $action The type of information being requested from the Plugin Install API.
64          * @param object      $args   Plugin API arguments.
65          */
66         $res = apply_filters( 'plugins_api', false, $action, $args );
67
68         if ( false === $res ) {
69                 $url = $http_url = 'http://api.wordpress.org/plugins/info/1.0/';
70                 if ( $ssl = wp_http_supports( array( 'ssl' ) ) )
71                         $url = set_url_scheme( $url, 'https' );
72
73                 $http_args = array(
74                         'timeout' => 15,
75                         'body' => array(
76                                 'action' => $action,
77                                 'request' => serialize( $args )
78                         )
79                 );
80                 $request = wp_remote_post( $url, $http_args );
81
82                 if ( $ssl && is_wp_error( $request ) ) {
83                         trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
84                         $request = wp_remote_post( $http_url, $http_args );
85                 }
86
87                 if ( is_wp_error($request) ) {
88                         $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ), $request->get_error_message() );
89                 } else {
90                         $res = maybe_unserialize( wp_remote_retrieve_body( $request ) );
91                         if ( ! is_object( $res ) && ! is_array( $res ) )
92                                 $res = new WP_Error('plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ), wp_remote_retrieve_body( $request ) );
93                 }
94         } elseif ( !is_wp_error($res) ) {
95                 $res->external = true;
96         }
97
98         /**
99          * Filter the Plugin Install API response results.
100          *
101          * @since 2.7.0
102          *
103          * @param object|WP_Error $res    Response object or WP_Error.
104          * @param string          $action The type of information being requested from the Plugin Install API.
105          * @param object          $args   Plugin API arguments.
106          */
107         return apply_filters( 'plugins_api_result', $res, $action, $args );
108 }
109
110 /**
111  * Retrieve popular WordPress plugin tags.
112  *
113  * @since 2.7.0
114  *
115  * @param array $args
116  * @return array
117  */
118 function install_popular_tags( $args = array() ) {
119         $key = md5(serialize($args));
120         if ( false !== ($tags = get_site_transient('poptags_' . $key) ) )
121                 return $tags;
122
123         $tags = plugins_api('hot_tags', $args);
124
125         if ( is_wp_error($tags) )
126                 return $tags;
127
128         set_site_transient( 'poptags_' . $key, $tags, 3 * HOUR_IN_SECONDS );
129
130         return $tags;
131 }
132
133 /**
134  * @since 2.7.0
135  */
136 function install_dashboard() {
137         ?>
138         <p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="%1$s">WordPress Plugin Directory</a> or upload a plugin in .zip format via <a href="%2$s">this page</a>.' ), 'https://wordpress.org/plugins/', self_admin_url( 'plugin-install.php?tab=upload' ) ); ?></p>
139
140         <?php display_plugins_table(); ?>
141
142         <h3><?php _e( 'Popular tags' ) ?></h3>
143         <p><?php _e( 'You may also browse based on the most popular tags in the Plugin Directory:' ) ?></p>
144         <?php
145
146         $api_tags = install_popular_tags();
147
148         echo '<p class="popular-tags">';
149         if ( is_wp_error($api_tags) ) {
150                 echo $api_tags->get_error_message();
151         } else {
152                 //Set up the tags in a way which can be interpreted by wp_generate_tag_cloud()
153                 $tags = array();
154                 foreach ( (array) $api_tags as $tag ) {
155                         $url = self_admin_url( 'plugin-install.php?tab=search&type=tag&s=' . urlencode( $tag['name'] ) );
156                         $data = array(
157                                 'link' => esc_url( $url ),
158                                 'name' => $tag['name'],
159                                 'slug' => $tag['slug'],
160                                 'id' => sanitize_title_with_dashes( $tag['name'] ),
161                                 'count' => $tag['count']
162                         );
163                         $tags[ $tag['name'] ] = (object) $data;
164                 }
165                 echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%s plugin'), 'multiple_text' => __('%s plugins') ) );
166         }
167         echo '</p><br class="clear" />';
168 }
169
170 /**
171  * Display search form for searching plugins.
172  *
173  * @since 2.7.0
174  *
175  * @param bool $type_selector
176  */
177 function install_search_form( $type_selector = true ) {
178         $type = isset($_REQUEST['type']) ? wp_unslash( $_REQUEST['type'] ) : 'term';
179         $term = isset($_REQUEST['s']) ? wp_unslash( $_REQUEST['s'] ) : '';
180         $input_attrs = '';
181         $button_type = 'button screen-reader-text';
182
183         // assume no $type_selector means it's a simplified search form
184         if ( ! $type_selector ) {
185                 $input_attrs = 'class="wp-filter-search" placeholder="' . esc_attr__( 'Search Plugins' ) . '" ';
186         }
187
188         ?><form class="search-form search-plugins" method="get">
189                 <input type="hidden" name="tab" value="search" />
190                 <?php if ( $type_selector ) : ?>
191                 <select name="type" id="typeselector">
192                         <option value="term"<?php selected('term', $type) ?>><?php _e('Keyword'); ?></option>
193                         <option value="author"<?php selected('author', $type) ?>><?php _e('Author'); ?></option>
194                         <option value="tag"<?php selected('tag', $type) ?>><?php _ex('Tag', 'Plugin Installer'); ?></option>
195                 </select>
196                 <?php endif; ?>
197                 <label><span class="screen-reader-text"><?php _e('Search Plugins'); ?></span>
198                         <input type="search" name="s" value="<?php echo esc_attr($term) ?>" <?php echo $input_attrs; ?>/>
199                 </label>
200                 <?php submit_button( __( 'Search Plugins' ), $button_type, false, false, array( 'id' => 'search-submit' ) ); ?>
201         </form><?php
202 }
203
204 /**
205  * Upload from zip
206  * @since 2.8.0
207  */
208 function install_plugins_upload() {
209 ?>
210 <div class="upload-plugin">
211         <p class="install-help"><?php _e('If you have a plugin in a .zip format, you may install it by uploading it here.'); ?></p>
212         <form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo self_admin_url('update.php?action=upload-plugin'); ?>">
213                 <?php wp_nonce_field( 'plugin-upload'); ?>
214                 <label class="screen-reader-text" for="pluginzip"><?php _e('Plugin zip file'); ?></label>
215                 <input type="file" id="pluginzip" name="pluginzip" />
216                 <?php submit_button( __( 'Install Now' ), 'button', 'install-plugin-submit', false ); ?>
217         </form>
218 </div>
219 <?php
220 }
221
222 /**
223  * Show a username form for the favorites page
224  * @since 3.5.0
225  *
226  */
227 function install_plugins_favorites_form() {
228         $user = ! empty( $_GET['user'] ) ? wp_unslash( $_GET['user'] ) : get_user_option( 'wporg_favorites' );
229         ?>
230         <p class="install-help"><?php _e( 'If you have marked plugins as favorites on WordPress.org, you can browse them here.' ); ?></p>
231         <form method="get">
232                 <input type="hidden" name="tab" value="favorites" />
233                 <p>
234                         <label for="user"><?php _e( 'Your WordPress.org username:' ); ?></label>
235                         <input type="search" id="user" name="user" value="<?php echo esc_attr( $user ); ?>" />
236                         <input type="submit" class="button" value="<?php esc_attr_e( 'Get Favorites' ); ?>" />
237                 </p>
238         </form>
239         <?php
240 }
241
242 /**
243  * Display plugin content based on plugin list.
244  *
245  * @since 2.7.0
246  *
247  * @global WP_List_Table $wp_list_table
248  */
249 function display_plugins_table() {
250         global $wp_list_table;
251
252         switch ( current_filter() ) {
253                 case 'install_plugins_favorites' :
254                         if ( empty( $_GET['user'] ) && ! get_user_option( 'wporg_favorites' ) ) {
255                                 return;
256                         }
257                         break;
258                 case 'install_plugins_recommended' :
259                         echo '<p>' . __( 'These suggestions are based on the plugins you and other users have installed.' ) . '</p>';
260                         break;
261         }
262
263         ?>
264         <form id="plugin-filter" method="post">
265                 <?php $wp_list_table->display(); ?>
266         </form>
267         <?php
268 }
269
270 /**
271  * Determine the status we can perform on a plugin.
272  *
273  * @since 3.0.0
274  *
275  * @param array|object $api
276  * @param bool        $loop
277  * @return type
278  */
279 function install_plugin_install_status($api, $loop = false) {
280         // This function is called recursively, $loop prevents further loops.
281         if ( is_array($api) )
282                 $api = (object) $api;
283
284         // Default to a "new" plugin
285         $status = 'install';
286         $url = false;
287         $update_file = false;
288
289         /*
290          * Check to see if this plugin is known to be installed,
291          * and has an update awaiting it.
292          */
293         $update_plugins = get_site_transient('update_plugins');
294         if ( isset( $update_plugins->response ) ) {
295                 foreach ( (array)$update_plugins->response as $file => $plugin ) {
296                         if ( $plugin->slug === $api->slug ) {
297                                 $status = 'update_available';
298                                 $update_file = $file;
299                                 $version = $plugin->new_version;
300                                 if ( current_user_can('update_plugins') )
301                                         $url = wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin=' . $update_file), 'upgrade-plugin_' . $update_file);
302                                 break;
303                         }
304                 }
305         }
306
307         if ( 'install' == $status ) {
308                 if ( is_dir( WP_PLUGIN_DIR . '/' . $api->slug ) ) {
309                         $installed_plugin = get_plugins('/' . $api->slug);
310                         if ( empty($installed_plugin) ) {
311                                 if ( current_user_can('install_plugins') )
312                                         $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);
313                         } else {
314                                 $key = array_keys( $installed_plugin );
315                                 $key = reset( $key ); //Use the first plugin regardless of the name, Could have issues for multiple-plugins in one directory if they share different version numbers
316                                 $update_file = $api->slug . '/' . $key;
317                                 if ( version_compare($api->version, $installed_plugin[ $key ]['Version'], '=') ){
318                                         $status = 'latest_installed';
319                                 } elseif ( version_compare($api->version, $installed_plugin[ $key ]['Version'], '<') ) {
320                                         $status = 'newer_installed';
321                                         $version = $installed_plugin[ $key ]['Version'];
322                                 } else {
323                                         //If the above update check failed, Then that probably means that the update checker has out-of-date information, force a refresh
324                                         if ( ! $loop ) {
325                                                 delete_site_transient('update_plugins');
326                                                 wp_update_plugins();
327                                                 return install_plugin_install_status($api, true);
328                                         }
329                                 }
330                         }
331                 } else {
332                         // "install" & no directory with that slug
333                         if ( current_user_can('install_plugins') )
334                                 $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);
335                 }
336         }
337         if ( isset($_GET['from']) )
338                 $url .= '&amp;from=' . urlencode( wp_unslash( $_GET['from'] ) );
339
340         $file = $update_file;
341         return compact( 'status', 'url', 'version', 'file' );
342 }
343
344 /**
345  * Display plugin information in dialog box form.
346  *
347  * @since 2.7.0
348  *
349  * @global string $tab
350  * @global string $wp_version
351  */
352 function install_plugin_information() {
353         global $tab;
354
355         if ( empty( $_REQUEST['plugin'] ) ) {
356                 return;
357         }
358
359         $api = plugins_api( 'plugin_information', array(
360                 'slug' => wp_unslash( $_REQUEST['plugin'] ),
361                 'is_ssl' => is_ssl(),
362                 'fields' => array(
363                         'banners' => true,
364                         'reviews' => true,
365                         'downloaded' => false,
366                         'active_installs' => true
367                 )
368         ) );
369
370         if ( is_wp_error( $api ) ) {
371                 wp_die( $api );
372         }
373
374         $plugins_allowedtags = array(
375                 'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
376                 'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
377                 'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
378                 'div' => array( 'class' => array() ), 'span' => array( 'class' => array() ),
379                 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
380                 'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
381                 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() )
382         );
383
384         $plugins_section_titles = array(
385                 'description'  => _x( 'Description',  'Plugin installer section title' ),
386                 'installation' => _x( 'Installation', 'Plugin installer section title' ),
387                 'faq'          => _x( 'FAQ',          'Plugin installer section title' ),
388                 'screenshots'  => _x( 'Screenshots',  'Plugin installer section title' ),
389                 'changelog'    => _x( 'Changelog',    'Plugin installer section title' ),
390                 'reviews'      => _x( 'Reviews',      'Plugin installer section title' ),
391                 'other_notes'  => _x( 'Other Notes',  'Plugin installer section title' )
392         );
393
394         // Sanitize HTML
395         foreach ( (array) $api->sections as $section_name => $content ) {
396                 $api->sections[$section_name] = wp_kses( $content, $plugins_allowedtags );
397         }
398
399         foreach ( array( 'version', 'author', 'requires', 'tested', 'homepage', 'downloaded', 'slug' ) as $key ) {
400                 if ( isset( $api->$key ) ) {
401                         $api->$key = wp_kses( $api->$key, $plugins_allowedtags );
402                 }
403         }
404
405         $_tab = esc_attr( $tab );
406
407         $section = isset( $_REQUEST['section'] ) ? wp_unslash( $_REQUEST['section'] ) : 'description'; // Default to the Description tab, Do not translate, API returns English.
408         if ( empty( $section ) || ! isset( $api->sections[ $section ] ) ) {
409                 $section_titles = array_keys( (array) $api->sections );
410                 $section = reset( $section_titles );
411         }
412
413         iframe_header( __( 'Plugin Install' ) );
414
415         $_with_banner = '';
416
417         if ( ! empty( $api->banners ) && ( ! empty( $api->banners['low'] ) || ! empty( $api->banners['high'] ) ) ) {
418                 $_with_banner = 'with-banner';
419                 $low  = empty( $api->banners['low'] ) ? $api->banners['high'] : $api->banners['low'];
420                 $high = empty( $api->banners['high'] ) ? $api->banners['low'] : $api->banners['high'];
421                 ?>
422                 <style type="text/css">
423                         #plugin-information-title.with-banner {
424                                 background-image: url( <?php echo esc_url( $low ); ?> );
425                         }
426                         @media only screen and ( -webkit-min-device-pixel-ratio: 1.5 ) {
427                                 #plugin-information-title.with-banner {
428                                         background-image: url( <?php echo esc_url( $high ); ?> );
429                                 }
430                         }
431                 </style>
432                 <?php
433         }
434
435         echo '<div id="plugin-information-scrollable">';
436         echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2>{$api->name}</h2></div>";
437         echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n";
438
439         foreach ( (array) $api->sections as $section_name => $content ) {
440                 if ( 'reviews' === $section_name && ( empty( $api->ratings ) || 0 === array_sum( (array) $api->ratings ) ) ) {
441                         continue;
442                 }
443
444                 if ( isset( $plugins_section_titles[ $section_name ] ) ) {
445                         $title = $plugins_section_titles[ $section_name ];
446                 } else {
447                         $title = ucwords( str_replace( '_', ' ', $section_name ) );
448                 }
449
450                 $class = ( $section_name === $section ) ? ' class="current"' : '';
451                 $href = add_query_arg( array('tab' => $tab, 'section' => $section_name) );
452                 $href = esc_url( $href );
453                 $san_section = esc_attr( $section_name );
454                 echo "\t<a name='$san_section' href='$href' $class>$title</a>\n";
455         }
456
457         echo "</div>\n";
458
459         $date_format = __( 'M j, Y @ H:i' );
460         $last_updated_timestamp = strtotime( $api->last_updated );
461         ?>
462         <div id="<?php echo $_tab; ?>-content" class='<?php echo $_with_banner; ?>'>
463         <div class="fyi">
464                 <ul>
465                 <?php if ( ! empty( $api->version ) ) { ?>
466                         <li><strong><?php _e( 'Version:' ); ?></strong> <?php echo $api->version; ?></li>
467                 <?php } if ( ! empty( $api->author ) ) { ?>
468                         <li><strong><?php _e( 'Author:' ); ?></strong> <?php echo links_add_target( $api->author, '_blank' ); ?></li>
469                 <?php } if ( ! empty( $api->last_updated ) ) { ?>
470                         <li><strong><?php _e( 'Last Updated:' ); ?></strong> <span title="<?php echo esc_attr( date_i18n( $date_format, $last_updated_timestamp ) ); ?>">
471                                 <?php printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) ); ?>
472                         </span></li>
473                 <?php } if ( ! empty( $api->requires ) ) { ?>
474                         <li><strong><?php _e( 'Requires WordPress Version:' ); ?></strong> <?php printf( __( '%s or higher' ), $api->requires ); ?></li>
475                 <?php } if ( ! empty( $api->tested ) ) { ?>
476                         <li><strong><?php _e( 'Compatible up to:' ); ?></strong> <?php echo $api->tested; ?></li>
477                 <?php } if ( ! empty( $api->active_installs ) ) { ?>
478                         <li><strong><?php _e( 'Active Installs:' ); ?></strong> <?php
479                                 if ( $api->active_installs >= 1000000 ) {
480                                         _ex( '1+ Million', 'Active plugin installs' );
481                                 } else {
482                                         echo number_format_i18n( $api->active_installs ) . '+';
483                                 }
484                         ?></li>
485                 <?php } if ( ! empty( $api->slug ) && empty( $api->external ) ) { ?>
486                         <li><a target="_blank" href="https://wordpress.org/plugins/<?php echo $api->slug; ?>/"><?php _e( 'WordPress.org Plugin Page &#187;' ); ?></a></li>
487                 <?php } if ( ! empty( $api->homepage ) ) { ?>
488                         <li><a target="_blank" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage &#187;' ); ?></a></li>
489                 <?php } if ( ! empty( $api->donate_link ) && empty( $api->contributors ) ) { ?>
490                         <li><a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a></li>
491                 <?php } ?>
492                 </ul>
493                 <?php if ( ! empty( $api->rating ) ) { ?>
494                 <h3><?php _e( 'Average Rating' ); ?></h3>
495                 <?php wp_star_rating( array( 'rating' => $api->rating, 'type' => 'percent', 'number' => $api->num_ratings ) ); ?>
496                 <small><?php printf( _n( '(based on %s rating)', '(based on %s ratings)', $api->num_ratings ), number_format_i18n( $api->num_ratings ) ); ?></small>
497                 <?php }
498
499                 if ( ! empty( $api->ratings ) && array_sum( (array) $api->ratings ) > 0 ) {
500                         foreach( $api->ratings as $key => $ratecount ) {
501                                 // Avoid div-by-zero.
502                                 $_rating = $api->num_ratings ? ( $ratecount / $api->num_ratings ) : 0;
503                                 ?>
504                                 <div class="counter-container">
505                                         <span class="counter-label"><a href="https://wordpress.org/support/view/plugin-reviews/<?php echo $api->slug; ?>?filter=<?php echo $key; ?>"
506                                                 target="_blank"
507                                                 title="<?php echo esc_attr( sprintf( _n( 'Click to see reviews that provided a rating of %d star', 'Click to see reviews that provided a rating of %d stars', $key ), $key ) ); ?>"><?php printf( _n( '%d star', '%d stars', $key ), $key ); ?></a></span>
508                                         <span class="counter-back">
509                                                 <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span>
510                                         </span>
511                                         <span class="counter-count"><?php echo number_format_i18n( $ratecount ); ?></span>
512                                 </div>
513                                 <?php
514                         }
515                 }
516                 if ( ! empty( $api->contributors ) ) { ?>
517                         <h3><?php _e( 'Contributors' ); ?></h3>
518                         <ul class="contributors">
519                                 <?php
520                                 foreach ( (array) $api->contributors as $contrib_username => $contrib_profile ) {
521                                         if ( empty( $contrib_username ) && empty( $contrib_profile ) ) {
522                                                 continue;
523                                         }
524                                         if ( empty( $contrib_username ) ) {
525                                                 $contrib_username = preg_replace( '/^.+\/(.+)\/?$/', '\1', $contrib_profile );
526                                         }
527                                         $contrib_username = sanitize_user( $contrib_username );
528                                         if ( empty( $contrib_profile ) ) {
529                                                 echo "<li><img src='https://wordpress.org/grav-redirect.php?user={$contrib_username}&amp;s=36' width='18' height='18' />{$contrib_username}</li>";
530                                         } else {
531                                                 echo "<li><a href='{$contrib_profile}' target='_blank'><img src='https://wordpress.org/grav-redirect.php?user={$contrib_username}&amp;s=36' width='18' height='18' />{$contrib_username}</a></li>";
532                                         }
533                                 }
534                                 ?>
535                         </ul>
536                         <?php if ( ! empty( $api->donate_link ) ) { ?>
537                                 <a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a>
538                         <?php } ?>
539                 <?php } ?>
540         </div>
541         <div id="section-holder" class="wrap">
542         <?php
543                 if ( ! empty( $api->tested ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->tested ) ), $api->tested, '>' ) ) {
544                         echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
545                 } elseif ( ! empty( $api->requires ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->requires ) ), $api->requires, '<' ) ) {
546                         echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been marked as compatible</strong> with your version of WordPress.') . '</p></div>';
547                 }
548
549                 foreach ( (array) $api->sections as $section_name => $content ) {
550                         $content = links_add_base_url( $content, 'https://wordpress.org/plugins/' . $api->slug . '/' );
551                         $content = links_add_target( $content, '_blank' );
552
553                         $san_section = esc_attr( $section_name );
554
555                         $display = ( $section_name === $section ) ? 'block' : 'none';
556
557                         echo "\t<div id='section-{$san_section}' class='section' style='display: {$display};'>\n";
558                         echo $content;
559                         echo "\t</div>\n";
560                 }
561         echo "</div>\n";
562         echo "</div>\n";
563         echo "</div>\n"; // #plugin-information-scrollable
564         echo "<div id='$tab-footer'>\n";
565         if ( ! empty( $api->download_link ) && ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) ) {
566                 $status = install_plugin_install_status( $api );
567                 switch ( $status['status'] ) {
568                         case 'install':
569                                 if ( $status['url'] ) {
570                                         echo '<a class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Now' ) . '</a>';
571                                 }
572                                 break;
573                         case 'update_available':
574                                 if ( $status['url'] ) {
575                                         echo '<a data-slug="' . esc_attr( $api->slug ) . '" id="plugin_update_from_iframe" class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Update Now' ) .'</a>';
576                                 }
577                                 break;
578                         case 'newer_installed':
579                                 echo '<a class="button button-primary right disabled">' . sprintf( __( 'Newer Version (%s) Installed'), $status['version'] ) . '</a>';
580                                 break;
581                         case 'latest_installed':
582                                 echo '<a class="button button-primary right disabled">' . __( 'Latest Version Installed' ) . '</a>';
583                                 break;
584                 }
585         }
586         echo "</div>\n";
587
588         iframe_footer();
589         exit;
590 }