]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/plugin-install.php
WordPress 4.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                 $args = array(
74                         'timeout' => 15,
75                         'body' => array(
76                                 'action' => $action,
77                                 'request' => serialize( $args )
78                         )
79                 );
80                 $request = wp_remote_post( $url, $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, $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 function install_dashboard() {
134         ?>
135         <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>
136
137         <?php display_plugins_table(); ?>
138
139         <h3><?php _e( 'Popular tags' ) ?></h3>
140         <p><?php _e( 'You may also browse based on the most popular tags in the Plugin Directory:' ) ?></p>
141         <?php
142
143         $api_tags = install_popular_tags();
144
145         echo '<p class="popular-tags">';
146         if ( is_wp_error($api_tags) ) {
147                 echo $api_tags->get_error_message();
148         } else {
149                 //Set up the tags in a way which can be interpreted by wp_generate_tag_cloud()
150                 $tags = array();
151                 foreach ( (array)$api_tags as $tag )
152                         $tags[ $tag['name'] ] = (object) array(
153                                                                         'link' => esc_url( self_admin_url('plugin-install.php?tab=search&type=tag&s=' . urlencode($tag['name'])) ),
154                                                                         'name' => $tag['name'],
155                                                                         'id' => sanitize_title_with_dashes($tag['name']),
156                                                                         'count' => $tag['count'] );
157                 echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%s plugin'), 'multiple_text' => __('%s plugins') ) );
158         }
159         echo '</p><br class="clear" />';
160 }
161 add_action( 'install_plugins_featured', 'install_dashboard' );
162
163 /**
164  * Display search form for searching plugins.
165  *
166  * @since 2.7.0
167  */
168 function install_search_form( $type_selector = true ) {
169         $type = isset($_REQUEST['type']) ? wp_unslash( $_REQUEST['type'] ) : 'term';
170         $term = isset($_REQUEST['s']) ? wp_unslash( $_REQUEST['s'] ) : '';
171         $input_attrs = '';
172         $button_type = 'button screen-reader-text';
173
174         // assume no $type_selector means it's a simplified search form
175         if ( ! $type_selector ) {
176                 $input_attrs = 'class="wp-filter-search" placeholder="' . esc_attr__( 'Search Plugins' ) . '" ';
177         }
178
179         ?><form class="search-form search-plugins" method="get" action="">
180                 <input type="hidden" name="tab" value="search" />
181                 <?php if ( $type_selector ) : ?>
182                 <select name="type" id="typeselector">
183                         <option value="term"<?php selected('term', $type) ?>><?php _e('Keyword'); ?></option>
184                         <option value="author"<?php selected('author', $type) ?>><?php _e('Author'); ?></option>
185                         <option value="tag"<?php selected('tag', $type) ?>><?php _ex('Tag', 'Plugin Installer'); ?></option>
186                 </select>
187                 <?php endif; ?>
188                 <label><span class="screen-reader-text"><?php _e('Search Plugins'); ?></span>
189                         <input type="search" name="s" value="<?php echo esc_attr($term) ?>" <?php echo $input_attrs; ?>/>
190                 </label>
191                 <?php submit_button( __( 'Search Plugins' ), $button_type, false, false, array( 'id' => 'search-submit' ) ); ?>
192         </form><?php
193 }
194
195 /**
196  * Upload from zip
197  * @since 2.8.0
198  *
199  * @param integer $page
200  */
201 function install_plugins_upload( $page = 1 ) {
202 ?>
203 <div class="upload-plugin">
204         <p class="install-help"><?php _e('If you have a plugin in a .zip format, you may install it by uploading it here.'); ?></p>
205         <form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo self_admin_url('update.php?action=upload-plugin'); ?>">
206                 <?php wp_nonce_field( 'plugin-upload'); ?>
207                 <label class="screen-reader-text" for="pluginzip"><?php _e('Plugin zip file'); ?></label>
208                 <input type="file" id="pluginzip" name="pluginzip" />
209                 <?php submit_button( __( 'Install Now' ), 'button', 'install-plugin-submit', false ); ?>
210         </form>
211 </div>
212 <?php
213 }
214 add_action('install_plugins_upload', 'install_plugins_upload', 10, 1);
215
216 /**
217  * Show a username form for the favorites page
218  * @since 3.5.0
219  *
220  */
221 function install_plugins_favorites_form() {
222         $user = ! empty( $_GET['user'] ) ? wp_unslash( $_GET['user'] ) : get_user_option( 'wporg_favorites' );
223         ?>
224         <p class="install-help"><?php _e( 'If you have marked plugins as favorites on WordPress.org, you can browse them here.' ); ?></p>
225         <form method="get" action="">
226                 <input type="hidden" name="tab" value="favorites" />
227                 <p>
228                         <label for="user"><?php _e( 'Your WordPress.org username:' ); ?></label>
229                         <input type="search" id="user" name="user" value="<?php echo esc_attr( $user ); ?>" />
230                         <input type="submit" class="button" value="<?php esc_attr_e( 'Get Favorites' ); ?>" />
231                 </p>
232         </form>
233         <?php
234 }
235
236 /**
237  * Display plugin content based on plugin list.
238  *
239  * @since 2.7.0
240  */
241 function display_plugins_table() {
242         global $wp_list_table;
243
244         switch ( current_filter() ) {
245                 case 'install_plugins_favorites' :
246                         if ( empty( $_GET['user'] ) && ! get_user_option( 'wporg_favorites' ) ) {
247                                 return;
248                         }
249                         break;
250                 case 'install_plugins_recommended' :
251                         echo '<p>' . __( 'These suggestions are based on the plugins you and other users have installed.' ) . '</p>';
252                         break;
253         }
254
255         ?>
256         <form id="plugin-filter" action="" method="post">
257                 <?php $wp_list_table->display(); ?>
258         </form>
259         <?php
260 }
261 add_action( 'install_plugins_search',      'display_plugins_table' );
262 add_action( 'install_plugins_popular',     'display_plugins_table' );
263 add_action( 'install_plugins_recommended', 'display_plugins_table' );
264 add_action( 'install_plugins_new',         'display_plugins_table' );
265 add_action( 'install_plugins_beta',        'display_plugins_table' );
266 add_action( 'install_plugins_favorites',   'display_plugins_table' );
267
268 /**
269  * Determine the status we can perform on a plugin.
270  *
271  * @since 3.0.0
272  */
273 function install_plugin_install_status($api, $loop = false) {
274         // This function is called recursively, $loop prevents further loops.
275         if ( is_array($api) )
276                 $api = (object) $api;
277
278         // Default to a "new" plugin
279         $status = 'install';
280         $url = false;
281
282         /*
283          * Check to see if this plugin is known to be installed,
284          * and has an update awaiting it.
285          */
286         $update_plugins = get_site_transient('update_plugins');
287         if ( isset( $update_plugins->response ) ) {
288                 foreach ( (array)$update_plugins->response as $file => $plugin ) {
289                         if ( $plugin->slug === $api->slug ) {
290                                 $status = 'update_available';
291                                 $update_file = $file;
292                                 $version = $plugin->new_version;
293                                 if ( current_user_can('update_plugins') )
294                                         $url = wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin=' . $update_file), 'upgrade-plugin_' . $update_file);
295                                 break;
296                         }
297                 }
298         }
299
300         if ( 'install' == $status ) {
301                 if ( is_dir( WP_PLUGIN_DIR . '/' . $api->slug ) ) {
302                         $installed_plugin = get_plugins('/' . $api->slug);
303                         if ( empty($installed_plugin) ) {
304                                 if ( current_user_can('install_plugins') )
305                                         $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);
306                         } else {
307                                 $key = array_keys( $installed_plugin );
308                                 $key = array_shift( $key ); //Use the first plugin regardless of the name, Could have issues for multiple-plugins in one directory if they share different version numbers
309                                 if ( version_compare($api->version, $installed_plugin[ $key ]['Version'], '=') ){
310                                         $status = 'latest_installed';
311                                 } elseif ( version_compare($api->version, $installed_plugin[ $key ]['Version'], '<') ) {
312                                         $status = 'newer_installed';
313                                         $version = $installed_plugin[ $key ]['Version'];
314                                 } else {
315                                         //If the above update check failed, Then that probably means that the update checker has out-of-date information, force a refresh
316                                         if ( ! $loop ) {
317                                                 delete_site_transient('update_plugins');
318                                                 wp_update_plugins();
319                                                 return install_plugin_install_status($api, true);
320                                         }
321                                 }
322                         }
323                 } else {
324                         // "install" & no directory with that slug
325                         if ( current_user_can('install_plugins') )
326                                 $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $api->slug), 'install-plugin_' . $api->slug);
327                 }
328         }
329         if ( isset($_GET['from']) )
330                 $url .= '&amp;from=' . urlencode( wp_unslash( $_GET['from'] ) );
331
332         return compact('status', 'url', 'version');
333 }
334
335 /**
336  * Display plugin information in dialog box form.
337  *
338  * @since 2.7.0
339  */
340 function install_plugin_information() {
341         global $tab;
342
343         if ( empty( $_REQUEST['plugin'] ) ) {
344                 return;
345         }
346
347         $api = plugins_api( 'plugin_information', array(
348                 'slug' => wp_unslash( $_REQUEST['plugin'] ),
349                 'is_ssl' => is_ssl(),
350                 'fields' => array( 'banners' => true, 'reviews' => true )
351         ) );
352
353         if ( is_wp_error( $api ) ) {
354                 wp_die( $api );
355         }
356
357         $plugins_allowedtags = array(
358                 'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
359                 'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
360                 'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
361                 'div' => array( 'class' => array() ), 'span' => array( 'class' => array() ),
362                 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
363                 'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
364                 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() )
365         );
366
367         $plugins_section_titles = array(
368                 'description'  => _x( 'Description',  'Plugin installer section title' ),
369                 'installation' => _x( 'Installation', 'Plugin installer section title' ),
370                 'faq'          => _x( 'FAQ',          'Plugin installer section title' ),
371                 'screenshots'  => _x( 'Screenshots',  'Plugin installer section title' ),
372                 'changelog'    => _x( 'Changelog',    'Plugin installer section title' ),
373                 'reviews'      => _x( 'Reviews',      'Plugin installer section title' ),
374                 'other_notes'  => _x( 'Other Notes',  'Plugin installer section title' )
375         );
376
377         // Sanitize HTML
378         foreach ( (array) $api->sections as $section_name => $content ) {
379                 $api->sections[$section_name] = wp_kses( $content, $plugins_allowedtags );
380         }
381
382         foreach ( array( 'version', 'author', 'requires', 'tested', 'homepage', 'downloaded', 'slug' ) as $key ) {
383                 if ( isset( $api->$key ) ) {
384                         $api->$key = wp_kses( $api->$key, $plugins_allowedtags );
385                 }
386         }
387
388         $_tab = esc_attr( $tab );
389
390         $section = isset( $_REQUEST['section'] ) ? wp_unslash( $_REQUEST['section'] ) : 'description'; // Default to the Description tab, Do not translate, API returns English.
391         if ( empty( $section ) || ! isset( $api->sections[ $section ] ) ) {
392                 $section_titles = array_keys( (array) $api->sections );
393                 $section = array_shift( $section_titles );
394         }
395
396         iframe_header( __( 'Plugin Install' ) );
397
398         $_with_banner = '';
399
400         if ( ! empty( $api->banners ) && ( ! empty( $api->banners['low'] ) || ! empty( $api->banners['high'] ) ) ) {
401                 $_with_banner = 'with-banner';
402                 $low  = empty( $api->banners['low'] ) ? $api->banners['high'] : $api->banners['low'];
403                 $high = empty( $api->banners['high'] ) ? $api->banners['low'] : $api->banners['high'];
404                 ?>
405                 <style type="text/css">
406                         #plugin-information-title.with-banner {
407                                 background-image: url( <?php echo esc_url( $low ); ?> );
408                         }
409                         @media only screen and ( -webkit-min-device-pixel-ratio: 1.5 ) {
410                                 #plugin-information-title.with-banner {
411                                         background-image: url( <?php echo esc_url( $high ); ?> );
412                                 }
413                         }
414                 </style>
415                 <?php
416         }
417
418         echo '<div id="plugin-information-scrollable">';
419         echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2>{$api->name}</h2></div>";
420         echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n";
421
422         foreach ( (array) $api->sections as $section_name => $content ) {
423                 if ( 'reviews' === $section_name && ( empty( $api->ratings ) || 0 === array_sum( (array) $api->ratings ) ) ) {
424                         continue;
425                 }
426
427                 if ( isset( $plugins_section_titles[ $section_name ] ) ) {
428                         $title = $plugins_section_titles[ $section_name ];
429                 } else {
430                         $title = ucwords( str_replace( '_', ' ', $section_name ) );
431                 }
432
433                 $class = ( $section_name === $section ) ? ' class="current"' : '';
434                 $href = add_query_arg( array('tab' => $tab, 'section' => $section_name) );
435                 $href = esc_url( $href );
436                 $san_section = esc_attr( $section_name );
437                 echo "\t<a name='$san_section' href='$href' $class>$title</a>\n";
438         }
439
440         echo "</div>\n";
441
442         ?>
443         <div id="<?php echo $_tab; ?>-content" class='<?php echo $_with_banner; ?>'>
444         <div class="fyi">
445                 <ul>
446                 <?php if ( ! empty( $api->version ) ) { ?>
447                         <li><strong><?php _e( 'Version:' ); ?></strong> <?php echo $api->version; ?></li>
448                 <?php } if ( ! empty( $api->author ) ) { ?>
449                         <li><strong><?php _e( 'Author:' ); ?></strong> <?php echo links_add_target( $api->author, '_blank' ); ?></li>
450                 <?php } if ( ! empty( $api->last_updated ) ) { ?>
451                         <li><strong><?php _e( 'Last Updated:' ); ?></strong> <span title="<?php echo $api->last_updated; ?>">
452                                 <?php printf( __( '%s ago' ), human_time_diff( strtotime( $api->last_updated ) ) ); ?>
453                         </span></li>
454                 <?php } if ( ! empty( $api->requires ) ) { ?>
455                         <li><strong><?php _e( 'Requires WordPress Version:' ); ?></strong> <?php printf( __( '%s or higher' ), $api->requires ); ?></li>
456                 <?php } if ( ! empty( $api->tested ) ) { ?>
457                         <li><strong><?php _e( 'Compatible up to:' ); ?></strong> <?php echo $api->tested; ?></li>
458                 <?php } if ( ! empty( $api->downloaded ) ) { ?>
459                         <li><strong><?php _e( 'Downloaded:' ); ?></strong> <?php printf( _n( '%s time', '%s times', $api->downloaded ), number_format_i18n( $api->downloaded ) ); ?></li>
460                 <?php } if ( ! empty( $api->slug ) && empty( $api->external ) ) { ?>
461                         <li><a target="_blank" href="https://wordpress.org/plugins/<?php echo $api->slug; ?>/"><?php _e( 'WordPress.org Plugin Page &#187;' ); ?></a></li>
462                 <?php } if ( ! empty( $api->homepage ) ) { ?>
463                         <li><a target="_blank" href="<?php echo esc_url( $api->homepage ); ?>"><?php _e( 'Plugin Homepage &#187;' ); ?></a></li>
464                 <?php } if ( ! empty( $api->donate_link ) && empty( $api->contributors ) ) { ?>
465                         <li><a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a></li>
466                 <?php } ?>
467                 </ul>
468                 <?php if ( ! empty( $api->rating ) ) { ?>
469                 <h3><?php _e( 'Average Rating' ); ?></h3>
470                 <?php wp_star_rating( array( 'rating' => $api->rating, 'type' => 'percent', 'number' => $api->num_ratings ) ); ?>
471                 <small><?php printf( _n( '(based on %s rating)', '(based on %s ratings)', $api->num_ratings ), number_format_i18n( $api->num_ratings ) ); ?></small>
472                 <?php }
473
474                 if ( ! empty( $api->ratings ) && array_sum( (array) $api->ratings ) > 0 ) {
475                         foreach( $api->ratings as $key => $ratecount ) {
476                                 // Avoid div-by-zero.
477                                 $_rating = $api->num_ratings ? ( $ratecount / $api->num_ratings ) : 0;
478                                 ?>
479                                 <div class="counter-container">
480                                         <span class="counter-label"><a href="https://wordpress.org/support/view/plugin-reviews/<?php echo $api->slug; ?>?filter=<?php echo $key; ?>"
481                                                 target="_blank"
482                                                 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>
483                                         <span class="counter-back">
484                                                 <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span>
485                                         </span>
486                                         <span class="counter-count"><?php echo number_format_i18n( $ratecount ); ?></span>
487                                 </div>
488                                 <?php
489                         }
490                 }
491                 if ( ! empty( $api->contributors ) ) { ?>
492                         <h3><?php _e( 'Contributors' ); ?></h3>
493                         <ul class="contributors">
494                                 <?php
495                                 foreach ( (array) $api->contributors as $contrib_username => $contrib_profile ) {
496                                         if ( empty( $contrib_username ) && empty( $contrib_profile ) ) {
497                                                 continue;
498                                         }
499                                         if ( empty( $contrib_username ) ) {
500                                                 $contrib_username = preg_replace( '/^.+\/(.+)\/?$/', '\1', $contrib_profile );
501                                         }
502                                         $contrib_username = sanitize_user( $contrib_username );
503                                         if ( empty( $contrib_profile ) ) {
504                                                 echo "<li><img src='https://wordpress.org/grav-redirect.php?user={$contrib_username}&amp;s=36' width='18' height='18' />{$contrib_username}</li>";
505                                         } else {
506                                                 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>";
507                                         }
508                                 }
509                                 ?>
510                         </ul>
511                         <?php if ( ! empty( $api->donate_link ) ) { ?>
512                                 <a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin &#187;' ); ?></a>
513                         <?php } ?>
514                 <?php } ?>
515         </div>
516         <div id="section-holder" class="wrap">
517         <?php
518                 if ( ! empty( $api->tested ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->tested ) ), $api->tested, '>' ) ) {
519                         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>';
520                 } else if ( ! empty( $api->requires ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->requires ) ), $api->requires, '<' ) ) {
521                         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>';
522                 }
523
524                 foreach ( (array) $api->sections as $section_name => $content ) {
525                         $content = links_add_base_url( $content, 'https://wordpress.org/plugins/' . $api->slug . '/' );
526                         $content = links_add_target( $content, '_blank' );
527
528                         $san_section = esc_attr( $section_name );
529
530                         $display = ( $section_name === $section ) ? 'block' : 'none';
531
532                         echo "\t<div id='section-{$san_section}' class='section' style='display: {$display};'>\n";
533                         echo $content;
534                         echo "\t</div>\n";
535                 }
536         echo "</div>\n";
537         echo "</div>\n";
538         echo "</div>\n"; // #plugin-information-scrollable
539         echo "<div id='$tab-footer'>\n";
540         if ( ! empty( $api->download_link ) && ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) ) {
541                 $status = install_plugin_install_status( $api );
542                 switch ( $status['status'] ) {
543                         case 'install':
544                                 if ( $status['url'] ) {
545                                         echo '<a class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Now' ) . '</a>';
546                                 }
547                                 break;
548                         case 'update_available':
549                                 if ( $status['url'] ) {
550                                         echo '<a class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Update Now' ) .'</a>';
551                                 }
552                                 break;
553                         case 'newer_installed':
554                                 echo '<a class="button button-primary right disabled">' . sprintf( __( 'Newer Version (%s) Installed'), $status['version'] ) . '</a>';
555                                 break;
556                         case 'latest_installed':
557                                 echo '<a class="button button-primary right disabled">' . __( 'Latest Version Installed' ) . '</a>';
558                                 break;
559                 }
560         }
561         echo "</div>\n";
562
563         iframe_footer();
564         exit;
565 }
566 add_action('install_plugins_pre_plugin-information', 'install_plugin_information');