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