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