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