author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:52:52 +0200 | |
changeset 22 | 8c2e4d02f4ef |
parent 21 | 48c4eec2b7e6 |
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', |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
23 |
* an object MUST be passed. If `$action` is 'hot_tags', an array MUST be passed. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
* 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
|
26 |
* response object or array, depending on the `$action` type. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
* Supported arguments per action: |
0 | 29 |
* |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
30 |
* | Argument Name | query_plugins | plugin_information | hot_tags | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
31 |
* | -------------------- | :-----------: | :----------------: | :------: | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
32 |
* | `$slug` | No | Yes | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
33 |
* | `$per_page` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
34 |
* | `$page` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
35 |
* | `$number` | No | No | Yes | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
36 |
* | `$search` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
37 |
* | `$tag` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
38 |
* | `$author` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
39 |
* | `$user` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
40 |
* | `$browse` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
41 |
* | `$locale` | Yes | Yes | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
42 |
* | `$installed_plugins` | Yes | No | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
43 |
* | `$is_ssl` | Yes | Yes | No | |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
44 |
* | `$fields` | Yes | Yes | No | |
0 | 45 |
* |
46 |
* @since 2.7.0 |
|
47 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
* @param string $action API action to perform: 'query_plugins', 'plugin_information', |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
49 |
* or 'hot_tags'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
* @param array|object $args { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
* 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
|
52 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
* @type string $slug The plugin slug. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
* @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
|
55 |
* @type int $page Number of current page. Default 1. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
56 |
* @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
|
57 |
* @type string $search A search term. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
* @type string $tag Tag to filter plugins. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
59 |
* @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
|
60 |
* @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
|
61 |
* @type string $browse Browse view: 'popular', 'new', 'beta', 'recommended'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
62 |
* @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
|
63 |
* of get_locale(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
* @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
|
65 |
* @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
|
66 |
* @type array $fields { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
* 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
|
68 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
* @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
|
70 |
* @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
|
71 |
* @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
|
72 |
* FAQ, screenshots, other notes, and changelog. Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
* @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
|
74 |
* @type bool $requires Whether to return the required WordPress version. Default true. |
16 | 75 |
* @type bool $requires_php Whether to return the required PHP version. Default true. |
7
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 $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
|
94 |
* } |
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 |
* @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
|
97 |
* {@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
|
98 |
* for more information on the make-up of possible return values depending on the value of `$action`. |
0 | 99 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
function plugins_api( $action, $args = array() ) { |
5 | 101 |
if ( is_array( $args ) ) { |
102 |
$args = (object) $args; |
|
103 |
} |
|
0 | 104 |
|
16 | 105 |
if ( 'query_plugins' === $action ) { |
9 | 106 |
if ( ! isset( $args->per_page ) ) { |
107 |
$args->per_page = 24; |
|
108 |
} |
|
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 |
|
9 | 115 |
if ( ! isset( $args->wp_version ) ) { |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
116 |
$args->wp_version = substr( wp_get_wp_version(), 0, 3 ); // x.y |
9 | 117 |
} |
118 |
||
0 | 119 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
* Filters the WordPress.org Plugin Installation API arguments. |
0 | 121 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
122 |
* Important: An object MUST be returned to this filter. |
0 | 123 |
* |
124 |
* @since 2.7.0 |
|
125 |
* |
|
126 |
* @param object $args Plugin API arguments. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
* @param string $action The type of information being requested from the Plugin Installation API. |
0 | 128 |
*/ |
129 |
$args = apply_filters( 'plugins_api_args', $args, $action ); |
|
130 |
||
131 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
* Filters the response for the current WordPress.org Plugin Installation API request. |
0 | 133 |
* |
19 | 134 |
* Returning a non-false value will effectively short-circuit the WordPress.org API request. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
* If `$action` is 'query_plugins' or 'plugin_information', an object MUST be passed. |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
137 |
* If `$action` is 'hot_tags', an array should be passed. |
0 | 138 |
* |
139 |
* @since 2.7.0 |
|
140 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
141 |
* @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
|
142 |
* @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
|
143 |
* @param object $args Plugin API arguments. |
0 | 144 |
*/ |
145 |
$res = apply_filters( 'plugins_api', false, $action, $args ); |
|
146 |
||
147 |
if ( false === $res ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
148 |
|
9 | 149 |
$url = 'http://api.wordpress.org/plugins/info/1.2/'; |
150 |
$url = add_query_arg( |
|
151 |
array( |
|
152 |
'action' => $action, |
|
153 |
'request' => $args, |
|
154 |
), |
|
155 |
$url |
|
156 |
); |
|
157 |
||
158 |
$http_url = $url; |
|
16 | 159 |
$ssl = wp_http_supports( array( 'ssl' ) ); |
160 |
if ( $ssl ) { |
|
0 | 161 |
$url = set_url_scheme( $url, 'https' ); |
9 | 162 |
} |
0 | 163 |
|
5 | 164 |
$http_args = array( |
9 | 165 |
'timeout' => 15, |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
166 |
'user-agent' => 'WordPress/' . wp_get_wp_version() . '; ' . home_url( '/' ), |
0 | 167 |
); |
9 | 168 |
$request = wp_remote_get( $url, $http_args ); |
0 | 169 |
|
170 |
if ( $ssl && is_wp_error( $request ) ) { |
|
16 | 171 |
if ( ! wp_is_json_request() ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
172 |
wp_trigger_error( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
173 |
__FUNCTION__, |
16 | 174 |
sprintf( |
175 |
/* translators: %s: Support forums URL. */ |
|
176 |
__( '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>.' ), |
|
177 |
__( 'https://wordpress.org/support/forums/' ) |
|
178 |
) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), |
|
179 |
headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE |
|
180 |
); |
|
181 |
} |
|
182 |
||
9 | 183 |
$request = wp_remote_get( $http_url, $http_args ); |
0 | 184 |
} |
185 |
||
9 | 186 |
if ( is_wp_error( $request ) ) { |
187 |
$res = new WP_Error( |
|
188 |
'plugins_api_failed', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
189 |
sprintf( |
16 | 190 |
/* translators: %s: Support forums URL. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
191 |
__( '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>.' ), |
16 | 192 |
__( 'https://wordpress.org/support/forums/' ) |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
193 |
), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
194 |
$request->get_error_message() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
195 |
); |
0 | 196 |
} else { |
9 | 197 |
$res = json_decode( wp_remote_retrieve_body( $request ), true ); |
198 |
if ( is_array( $res ) ) { |
|
199 |
// Object casting is required in order to match the info/1.0 format. |
|
200 |
$res = (object) $res; |
|
201 |
} elseif ( null === $res ) { |
|
202 |
$res = new WP_Error( |
|
203 |
'plugins_api_failed', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
204 |
sprintf( |
16 | 205 |
/* translators: %s: Support forums URL. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
206 |
__( '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>.' ), |
16 | 207 |
__( 'https://wordpress.org/support/forums/' ) |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
208 |
), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
wp_remote_retrieve_body( $request ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
210 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
211 |
} |
9 | 212 |
|
213 |
if ( isset( $res->error ) ) { |
|
214 |
$res = new WP_Error( 'plugins_api_failed', $res->error ); |
|
215 |
} |
|
0 | 216 |
} |
9 | 217 |
} elseif ( ! is_wp_error( $res ) ) { |
0 | 218 |
$res->external = true; |
219 |
} |
|
220 |
||
221 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
222 |
* Filters the Plugin Installation API response results. |
0 | 223 |
* |
224 |
* @since 2.7.0 |
|
225 |
* |
|
226 |
* @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
|
227 |
* @param string $action The type of information being requested from the Plugin Installation API. |
0 | 228 |
* @param object $args Plugin API arguments. |
229 |
*/ |
|
230 |
return apply_filters( 'plugins_api_result', $res, $action, $args ); |
|
231 |
} |
|
232 |
||
233 |
/** |
|
19 | 234 |
* Retrieves popular WordPress plugin tags. |
0 | 235 |
* |
236 |
* @since 2.7.0 |
|
237 |
* |
|
238 |
* @param array $args |
|
18 | 239 |
* @return array|WP_Error |
0 | 240 |
*/ |
241 |
function install_popular_tags( $args = array() ) { |
|
16 | 242 |
$key = md5( serialize( $args ) ); |
243 |
$tags = get_site_transient( 'poptags_' . $key ); |
|
244 |
if ( false !== $tags ) { |
|
0 | 245 |
return $tags; |
9 | 246 |
} |
0 | 247 |
|
9 | 248 |
$tags = plugins_api( 'hot_tags', $args ); |
0 | 249 |
|
9 | 250 |
if ( is_wp_error( $tags ) ) { |
0 | 251 |
return $tags; |
9 | 252 |
} |
0 | 253 |
|
254 |
set_site_transient( 'poptags_' . $key, $tags, 3 * HOUR_IN_SECONDS ); |
|
255 |
||
256 |
return $tags; |
|
257 |
} |
|
258 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
/** |
19 | 260 |
* Displays the Featured tab of Add Plugins screen. |
261 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
* @since 2.7.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
263 |
*/ |
0 | 264 |
function install_dashboard() { |
19 | 265 |
display_plugins_table(); |
0 | 266 |
?> |
267 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
268 |
<div class="plugins-popular-tags-wrapper"> |
9 | 269 |
<h2><?php _e( 'Popular tags' ); ?></h2> |
270 |
<p><?php _e( 'You may also browse based on the most popular tags in the Plugin Directory:' ); ?></p> |
|
0 | 271 |
<?php |
272 |
||
273 |
$api_tags = install_popular_tags(); |
|
274 |
||
275 |
echo '<p class="popular-tags">'; |
|
9 | 276 |
if ( is_wp_error( $api_tags ) ) { |
0 | 277 |
echo $api_tags->get_error_message(); |
278 |
} else { |
|
16 | 279 |
// Set up the tags in a way which can be interpreted by wp_generate_tag_cloud(). |
0 | 280 |
$tags = array(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
281 |
foreach ( (array) $api_tags as $tag ) { |
9 | 282 |
$url = self_admin_url( 'plugin-install.php?tab=search&type=tag&s=' . urlencode( $tag['name'] ) ); |
283 |
$data = array( |
|
284 |
'link' => esc_url( $url ), |
|
285 |
'name' => $tag['name'], |
|
286 |
'slug' => $tag['slug'], |
|
287 |
'id' => sanitize_title_with_dashes( $tag['name'] ), |
|
288 |
'count' => $tag['count'], |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
289 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
$tags[ $tag['name'] ] = (object) $data; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
291 |
} |
9 | 292 |
echo wp_generate_tag_cloud( |
293 |
$tags, |
|
294 |
array( |
|
16 | 295 |
/* translators: %s: Number of plugins. */ |
9 | 296 |
'single_text' => __( '%s plugin' ), |
16 | 297 |
/* translators: %s: Number of plugins. */ |
9 | 298 |
'multiple_text' => __( '%s plugins' ), |
299 |
) |
|
300 |
); |
|
0 | 301 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
302 |
echo '</p><br class="clear" /></div>'; |
0 | 303 |
} |
304 |
||
305 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
306 |
* Displays a search form for searching plugins. |
0 | 307 |
* |
308 |
* @since 2.7.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
* @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
|
310 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
311 |
* @param bool $deprecated Not used. |
0 | 312 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
313 |
function install_search_form( $deprecated = true ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
314 |
$type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term'; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
315 |
$term = isset( $_REQUEST['s'] ) ? urldecode( wp_unslash( $_REQUEST['s'] ) ) : ''; |
9 | 316 |
?> |
317 |
<form class="search-form search-plugins" method="get"> |
|
0 | 318 |
<input type="hidden" name="tab" value="search" /> |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
319 |
<label for="search-plugins"><?php _e( 'Search Plugins' ); ?></label> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
320 |
<input type="search" name="s" id="search-plugins" value="<?php echo esc_attr( $term ); ?>" class="wp-filter-search" /> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
321 |
<label class="screen-reader-text" for="typeselector"> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
322 |
<?php |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
323 |
/* translators: Hidden accessibility text. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
324 |
_e( 'Search plugins by:' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
325 |
?> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
326 |
</label> |
0 | 327 |
<select name="type" id="typeselector"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
328 |
<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
|
329 |
<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
|
330 |
<option value="tag"<?php selected( 'tag', $type ); ?>><?php _ex( 'Tag', 'Plugin Installer' ); ?></option> |
0 | 331 |
</select> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
332 |
<?php submit_button( __( 'Search Plugins' ), 'hide-if-js', false, false, array( 'id' => 'search-submit' ) ); ?> |
9 | 333 |
</form> |
334 |
<?php |
|
0 | 335 |
} |
336 |
||
337 |
/** |
|
19 | 338 |
* Displays a form to upload plugins from zip files. |
9 | 339 |
* |
0 | 340 |
* @since 2.8.0 |
341 |
*/ |
|
5 | 342 |
function install_plugins_upload() { |
9 | 343 |
?> |
5 | 344 |
<div class="upload-plugin"> |
16 | 345 |
<p class="install-help"><?php _e( 'If you have a plugin in a .zip format, you may install or update it by uploading it here.' ); ?></p> |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
346 |
<form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo esc_url( self_admin_url( 'update.php?action=upload-plugin' ) ); ?>"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
347 |
<?php wp_nonce_field( 'plugin-upload' ); ?> |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
348 |
<label class="screen-reader-text" for="pluginzip"> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
349 |
<?php |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
350 |
/* translators: Hidden accessibility text. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
351 |
_e( 'Plugin zip file' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
352 |
?> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
353 |
</label> |
16 | 354 |
<input type="file" id="pluginzip" name="pluginzip" accept=".zip" /> |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
355 |
<?php submit_button( _x( 'Install Now', 'plugin' ), '', 'install-plugin-submit', false ); ?> |
0 | 356 |
</form> |
5 | 357 |
</div> |
9 | 358 |
<?php |
0 | 359 |
} |
360 |
||
361 |
/** |
|
19 | 362 |
* Shows a username form for the favorites page. |
9 | 363 |
* |
0 | 364 |
* @since 3.5.0 |
365 |
*/ |
|
366 |
function install_plugins_favorites_form() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
367 |
$user = get_user_option( 'wporg_favorites' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
368 |
$action = 'save_wporg_username_' . get_current_user_id(); |
0 | 369 |
?> |
16 | 370 |
<p><?php _e( 'If you have marked plugins as favorites on WordPress.org, you can browse them here.' ); ?></p> |
5 | 371 |
<form method="get"> |
0 | 372 |
<input type="hidden" name="tab" value="favorites" /> |
373 |
<p> |
|
374 |
<label for="user"><?php _e( 'Your WordPress.org username:' ); ?></label> |
|
375 |
<input type="search" id="user" name="user" value="<?php echo esc_attr( $user ); ?>" /> |
|
376 |
<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
|
377 |
<input type="hidden" id="wporg-username-nonce" name="_wpnonce" value="<?php echo esc_attr( wp_create_nonce( $action ) ); ?>" /> |
0 | 378 |
</p> |
379 |
</form> |
|
380 |
<?php |
|
381 |
} |
|
382 |
||
383 |
/** |
|
19 | 384 |
* Displays plugin content based on plugin list. |
0 | 385 |
* |
386 |
* @since 2.7.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
387 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
388 |
* @global WP_List_Table $wp_list_table |
0 | 389 |
*/ |
390 |
function display_plugins_table() { |
|
391 |
global $wp_list_table; |
|
392 |
||
5 | 393 |
switch ( current_filter() ) { |
9 | 394 |
case 'install_plugins_beta': |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
395 |
printf( |
16 | 396 |
/* translators: %s: URL to "Features as Plugins" page. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
397 |
'<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
|
398 |
'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
|
399 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
400 |
break; |
19 | 401 |
case 'install_plugins_featured': |
402 |
printf( |
|
403 |
/* translators: %s: https://wordpress.org/plugins/ */ |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
404 |
'<p>' . __( 'Plugins extend and expand the functionality of WordPress. You may install plugins in the <a href="%s">WordPress Plugin Directory</a> right from here, or upload a plugin in .zip format by clicking the button at the top of this page.' ) . '</p>', |
19 | 405 |
__( 'https://wordpress.org/plugins/' ) |
406 |
); |
|
407 |
break; |
|
408 |
case 'install_plugins_recommended': |
|
409 |
echo '<p>' . __( 'These suggestions are based on the plugins you and other users have installed.' ) . '</p>'; |
|
410 |
break; |
|
411 |
case 'install_plugins_favorites': |
|
412 |
if ( empty( $_GET['user'] ) && ! get_user_option( 'wporg_favorites' ) ) { |
|
413 |
return; |
|
414 |
} |
|
415 |
break; |
|
5 | 416 |
} |
417 |
?> |
|
418 |
<form id="plugin-filter" method="post"> |
|
419 |
<?php $wp_list_table->display(); ?> |
|
420 |
</form> |
|
421 |
<?php |
|
0 | 422 |
} |
423 |
||
424 |
/** |
|
19 | 425 |
* Determines the status we can perform on a plugin. |
0 | 426 |
* |
427 |
* @since 3.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
428 |
* |
16 | 429 |
* @param array|object $api Data about the plugin retrieved from the API. |
430 |
* @param bool $loop Optional. Disable further loops. Default false. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
431 |
* @return array { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
432 |
* Plugin installation status data. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
433 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
434 |
* @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
|
435 |
* @type string $url Plugin installation URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
436 |
* @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
|
437 |
* @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
|
438 |
* } |
0 | 439 |
*/ |
9 | 440 |
function install_plugin_install_status( $api, $loop = false ) { |
5 | 441 |
// This function is called recursively, $loop prevents further loops. |
9 | 442 |
if ( is_array( $api ) ) { |
0 | 443 |
$api = (object) $api; |
9 | 444 |
} |
0 | 445 |
|
16 | 446 |
// Default to a "new" plugin. |
9 | 447 |
$status = 'install'; |
448 |
$url = false; |
|
5 | 449 |
$update_file = false; |
9 | 450 |
$version = ''; |
0 | 451 |
|
5 | 452 |
/* |
453 |
* Check to see if this plugin is known to be installed, |
|
454 |
* and has an update awaiting it. |
|
455 |
*/ |
|
9 | 456 |
$update_plugins = get_site_transient( 'update_plugins' ); |
0 | 457 |
if ( isset( $update_plugins->response ) ) { |
9 | 458 |
foreach ( (array) $update_plugins->response as $file => $plugin ) { |
0 | 459 |
if ( $plugin->slug === $api->slug ) { |
9 | 460 |
$status = 'update_available'; |
0 | 461 |
$update_file = $file; |
9 | 462 |
$version = $plugin->new_version; |
463 |
if ( current_user_can( 'update_plugins' ) ) { |
|
464 |
$url = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' . $update_file ), 'upgrade-plugin_' . $update_file ); |
|
465 |
} |
|
0 | 466 |
break; |
467 |
} |
|
468 |
} |
|
469 |
} |
|
470 |
||
16 | 471 |
if ( 'install' === $status ) { |
0 | 472 |
if ( is_dir( WP_PLUGIN_DIR . '/' . $api->slug ) ) { |
9 | 473 |
$installed_plugin = get_plugins( '/' . $api->slug ); |
474 |
if ( empty( $installed_plugin ) ) { |
|
475 |
if ( current_user_can( 'install_plugins' ) ) { |
|
476 |
$url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $api->slug ), 'install-plugin_' . $api->slug ); |
|
477 |
} |
|
0 | 478 |
} else { |
16 | 479 |
$key = array_keys( $installed_plugin ); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
480 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
481 |
* Use the first plugin regardless of the name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
482 |
* Could have issues for multiple plugins in one directory if they share different version numbers. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
483 |
*/ |
16 | 484 |
$key = reset( $key ); |
485 |
||
5 | 486 |
$update_file = $api->slug . '/' . $key; |
9 | 487 |
if ( version_compare( $api->version, $installed_plugin[ $key ]['Version'], '=' ) ) { |
0 | 488 |
$status = 'latest_installed'; |
9 | 489 |
} elseif ( version_compare( $api->version, $installed_plugin[ $key ]['Version'], '<' ) ) { |
490 |
$status = 'newer_installed'; |
|
0 | 491 |
$version = $installed_plugin[ $key ]['Version']; |
492 |
} else { |
|
16 | 493 |
// If the above update check failed, then that probably means that the update checker has out-of-date information, force a refresh. |
0 | 494 |
if ( ! $loop ) { |
9 | 495 |
delete_site_transient( 'update_plugins' ); |
0 | 496 |
wp_update_plugins(); |
9 | 497 |
return install_plugin_install_status( $api, true ); |
0 | 498 |
} |
499 |
} |
|
500 |
} |
|
501 |
} else { |
|
16 | 502 |
// "install" & no directory with that slug. |
9 | 503 |
if ( current_user_can( 'install_plugins' ) ) { |
504 |
$url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $api->slug ), 'install-plugin_' . $api->slug ); |
|
505 |
} |
|
0 | 506 |
} |
507 |
} |
|
9 | 508 |
if ( isset( $_GET['from'] ) ) { |
0 | 509 |
$url .= '&from=' . urlencode( wp_unslash( $_GET['from'] ) ); |
9 | 510 |
} |
0 | 511 |
|
5 | 512 |
$file = $update_file; |
513 |
return compact( 'status', 'url', 'version', 'file' ); |
|
0 | 514 |
} |
515 |
||
516 |
/** |
|
19 | 517 |
* Displays plugin information in dialog box form. |
0 | 518 |
* |
519 |
* @since 2.7.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
520 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
521 |
* @global string $tab |
0 | 522 |
*/ |
523 |
function install_plugin_information() { |
|
524 |
global $tab; |
|
525 |
||
5 | 526 |
if ( empty( $_REQUEST['plugin'] ) ) { |
527 |
return; |
|
528 |
} |
|
0 | 529 |
|
9 | 530 |
$api = plugins_api( |
531 |
'plugin_information', |
|
532 |
array( |
|
533 |
'slug' => wp_unslash( $_REQUEST['plugin'] ), |
|
5 | 534 |
) |
9 | 535 |
); |
5 | 536 |
|
537 |
if ( is_wp_error( $api ) ) { |
|
538 |
wp_die( $api ); |
|
539 |
} |
|
0 | 540 |
|
541 |
$plugins_allowedtags = array( |
|
9 | 542 |
'a' => array( |
543 |
'href' => array(), |
|
544 |
'title' => array(), |
|
545 |
'target' => array(), |
|
546 |
), |
|
547 |
'abbr' => array( 'title' => array() ), |
|
548 |
'acronym' => array( 'title' => array() ), |
|
549 |
'code' => array(), |
|
550 |
'pre' => array(), |
|
551 |
'em' => array(), |
|
552 |
'strong' => array(), |
|
553 |
'div' => array( 'class' => array() ), |
|
554 |
'span' => array( 'class' => array() ), |
|
555 |
'p' => array(), |
|
556 |
'br' => array(), |
|
557 |
'ul' => array(), |
|
558 |
'ol' => array(), |
|
559 |
'li' => array(), |
|
560 |
'h1' => array(), |
|
561 |
'h2' => array(), |
|
562 |
'h3' => array(), |
|
563 |
'h4' => array(), |
|
564 |
'h5' => array(), |
|
565 |
'h6' => array(), |
|
566 |
'img' => array( |
|
567 |
'src' => array(), |
|
568 |
'class' => array(), |
|
569 |
'alt' => array(), |
|
570 |
), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
571 |
'blockquote' => array( 'cite' => true ), |
0 | 572 |
); |
573 |
||
574 |
$plugins_section_titles = array( |
|
9 | 575 |
'description' => _x( 'Description', 'Plugin installer section title' ), |
5 | 576 |
'installation' => _x( 'Installation', 'Plugin installer section title' ), |
9 | 577 |
'faq' => _x( 'FAQ', 'Plugin installer section title' ), |
578 |
'screenshots' => _x( 'Screenshots', 'Plugin installer section title' ), |
|
579 |
'changelog' => _x( 'Changelog', 'Plugin installer section title' ), |
|
580 |
'reviews' => _x( 'Reviews', 'Plugin installer section title' ), |
|
581 |
'other_notes' => _x( 'Other Notes', 'Plugin installer section title' ), |
|
0 | 582 |
); |
583 |
||
16 | 584 |
// Sanitize HTML. |
5 | 585 |
foreach ( (array) $api->sections as $section_name => $content ) { |
9 | 586 |
$api->sections[ $section_name ] = wp_kses( $content, $plugins_allowedtags ); |
5 | 587 |
} |
588 |
||
0 | 589 |
foreach ( array( 'version', 'author', 'requires', 'tested', 'homepage', 'downloaded', 'slug' ) as $key ) { |
5 | 590 |
if ( isset( $api->$key ) ) { |
0 | 591 |
$api->$key = wp_kses( $api->$key, $plugins_allowedtags ); |
5 | 592 |
} |
593 |
} |
|
594 |
||
595 |
$_tab = esc_attr( $tab ); |
|
596 |
||
16 | 597 |
// Default to the Description tab, Do not translate, API returns English. |
598 |
$section = isset( $_REQUEST['section'] ) ? wp_unslash( $_REQUEST['section'] ) : 'description'; |
|
5 | 599 |
if ( empty( $section ) || ! isset( $api->sections[ $section ] ) ) { |
600 |
$section_titles = array_keys( (array) $api->sections ); |
|
9 | 601 |
$section = reset( $section_titles ); |
0 | 602 |
} |
603 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
604 |
iframe_header( __( 'Plugin Installation' ) ); |
5 | 605 |
|
606 |
$_with_banner = ''; |
|
607 |
||
608 |
if ( ! empty( $api->banners ) && ( ! empty( $api->banners['low'] ) || ! empty( $api->banners['high'] ) ) ) { |
|
609 |
$_with_banner = 'with-banner'; |
|
9 | 610 |
$low = empty( $api->banners['low'] ) ? $api->banners['high'] : $api->banners['low']; |
611 |
$high = empty( $api->banners['high'] ) ? $api->banners['low'] : $api->banners['high']; |
|
5 | 612 |
?> |
613 |
<style type="text/css"> |
|
614 |
#plugin-information-title.with-banner { |
|
615 |
background-image: url( <?php echo esc_url( $low ); ?> ); |
|
616 |
} |
|
617 |
@media only screen and ( -webkit-min-device-pixel-ratio: 1.5 ) { |
|
618 |
#plugin-information-title.with-banner { |
|
619 |
background-image: url( <?php echo esc_url( $high ); ?> ); |
|
620 |
} |
|
621 |
} |
|
622 |
</style> |
|
623 |
<?php |
|
624 |
} |
|
625 |
||
626 |
echo '<div id="plugin-information-scrollable">'; |
|
627 |
echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2>{$api->name}</h2></div>"; |
|
628 |
echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n"; |
|
629 |
||
630 |
foreach ( (array) $api->sections as $section_name => $content ) { |
|
631 |
if ( 'reviews' === $section_name && ( empty( $api->ratings ) || 0 === array_sum( (array) $api->ratings ) ) ) { |
|
632 |
continue; |
|
633 |
} |
|
634 |
||
635 |
if ( isset( $plugins_section_titles[ $section_name ] ) ) { |
|
636 |
$title = $plugins_section_titles[ $section_name ]; |
|
637 |
} else { |
|
638 |
$title = ucwords( str_replace( '_', ' ', $section_name ) ); |
|
639 |
} |
|
640 |
||
9 | 641 |
$class = ( $section_name === $section ) ? ' class="current"' : ''; |
642 |
$href = add_query_arg( |
|
643 |
array( |
|
644 |
'tab' => $tab, |
|
645 |
'section' => $section_name, |
|
646 |
) |
|
647 |
); |
|
648 |
$href = esc_url( $href ); |
|
5 | 649 |
$san_section = esc_attr( $section_name ); |
650 |
echo "\t<a name='$san_section' href='$href' $class>$title</a>\n"; |
|
0 | 651 |
} |
652 |
||
5 | 653 |
echo "</div>\n"; |
0 | 654 |
|
655 |
?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
656 |
<div id="<?php echo $_tab; ?>-content" class='<?php echo $_with_banner; ?>'> |
5 | 657 |
<div class="fyi"> |
0 | 658 |
<ul> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
659 |
<?php if ( ! empty( $api->version ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
660 |
<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
|
661 |
<?php } if ( ! empty( $api->author ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
662 |
<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
|
663 |
<?php } if ( ! empty( $api->last_updated ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
664 |
<li><strong><?php _e( 'Last Updated:' ); ?></strong> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
665 |
<?php |
16 | 666 |
/* translators: %s: Human-readable time difference. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
667 |
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
|
668 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
669 |
</li> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
670 |
<?php } if ( ! empty( $api->requires ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
671 |
<li> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
672 |
<strong><?php _e( 'Requires WordPress Version:' ); ?></strong> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
673 |
<?php |
16 | 674 |
/* translators: %s: Version number. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
675 |
printf( __( '%s or higher' ), $api->requires ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
676 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
677 |
</li> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
678 |
<?php } if ( ! empty( $api->tested ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
<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
|
680 |
<?php } if ( ! empty( $api->requires_php ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
681 |
<li> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
682 |
<strong><?php _e( 'Requires PHP Version:' ); ?></strong> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
683 |
<?php |
16 | 684 |
/* translators: %s: Version number. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
685 |
printf( __( '%s or higher' ), $api->requires_php ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
686 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
687 |
</li> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
688 |
<?php } if ( isset( $api->active_installs ) ) { ?> |
9 | 689 |
<li><strong><?php _e( 'Active Installations:' ); ?></strong> |
690 |
<?php |
|
691 |
if ( $api->active_installs >= 1000000 ) { |
|
692 |
$active_installs_millions = floor( $api->active_installs / 1000000 ); |
|
693 |
printf( |
|
16 | 694 |
/* translators: %s: Number of millions. */ |
9 | 695 |
_nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ), |
696 |
number_format_i18n( $active_installs_millions ) |
|
697 |
); |
|
18 | 698 |
} elseif ( $api->active_installs < 10 ) { |
9 | 699 |
_ex( 'Less Than 10', 'Active plugin installations' ); |
700 |
} else { |
|
701 |
echo number_format_i18n( $api->active_installs ) . '+'; |
|
702 |
} |
|
703 |
?> |
|
704 |
</li> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
705 |
<?php } if ( ! empty( $api->slug ) && empty( $api->external ) ) { ?> |
19 | 706 |
<li><a target="_blank" href="<?php echo esc_url( __( 'https://wordpress.org/plugins/' ) . $api->slug ); ?>/"><?php _e( 'WordPress.org Plugin Page »' ); ?></a></li> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
707 |
<?php } if ( ! empty( $api->homepage ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
708 |
<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
|
709 |
<?php } if ( ! empty( $api->donate_link ) && empty( $api->contributors ) ) { ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
710 |
<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
|
711 |
<?php } ?> |
0 | 712 |
</ul> |
5 | 713 |
<?php if ( ! empty( $api->rating ) ) { ?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
714 |
<h3><?php _e( 'Average Rating' ); ?></h3> |
9 | 715 |
<?php |
716 |
wp_star_rating( |
|
717 |
array( |
|
718 |
'rating' => $api->rating, |
|
719 |
'type' => 'percent', |
|
720 |
'number' => $api->num_ratings, |
|
721 |
) |
|
722 |
); |
|
723 |
?> |
|
16 | 724 |
<p aria-hidden="true" class="fyi-description"> |
725 |
<?php |
|
726 |
printf( |
|
727 |
/* translators: %s: Number of ratings. */ |
|
728 |
_n( '(based on %s rating)', '(based on %s ratings)', $api->num_ratings ), |
|
729 |
number_format_i18n( $api->num_ratings ) |
|
730 |
); |
|
731 |
?> |
|
732 |
</p> |
|
9 | 733 |
<?php |
734 |
} |
|
5 | 735 |
|
9 | 736 |
if ( ! empty( $api->ratings ) && array_sum( (array) $api->ratings ) > 0 ) { |
737 |
?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
738 |
<h3><?php _e( 'Reviews' ); ?></h3> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
739 |
<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
|
740 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
741 |
foreach ( $api->ratings as $key => $ratecount ) { |
5 | 742 |
// Avoid div-by-zero. |
16 | 743 |
$_rating = $api->num_ratings ? ( $ratecount / $api->num_ratings ) : 0; |
9 | 744 |
$aria_label = esc_attr( |
745 |
sprintf( |
|
16 | 746 |
/* translators: 1: Number of stars (used to determine singular/plural), 2: Number of reviews. */ |
747 |
_n( |
|
748 |
'Reviews with %1$d star: %2$s. Opens in a new tab.', |
|
749 |
'Reviews with %1$d stars: %2$s. Opens in a new tab.', |
|
750 |
$key |
|
751 |
), |
|
9 | 752 |
$key, |
753 |
number_format_i18n( $ratecount ) |
|
754 |
) |
|
755 |
); |
|
5 | 756 |
?> |
757 |
<div class="counter-container"> |
|
9 | 758 |
<span class="counter-label"> |
16 | 759 |
<?php |
760 |
printf( |
|
761 |
'<a href="%s" target="_blank" aria-label="%s">%s</a>', |
|
762 |
"https://wordpress.org/support/plugin/{$api->slug}/reviews/?filter={$key}", |
|
763 |
$aria_label, |
|
764 |
/* translators: %s: Number of stars. */ |
|
765 |
sprintf( _n( '%d star', '%d stars', $key ), $key ) |
|
766 |
); |
|
767 |
?> |
|
9 | 768 |
</span> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
769 |
<span class="counter-back"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
770 |
<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
|
771 |
</span> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
772 |
<span class="counter-count" aria-hidden="true"><?php echo number_format_i18n( $ratecount ); ?></span> |
5 | 773 |
</div> |
774 |
<?php |
|
775 |
} |
|
776 |
} |
|
9 | 777 |
if ( ! empty( $api->contributors ) ) { |
778 |
?> |
|
5 | 779 |
<h3><?php _e( 'Contributors' ); ?></h3> |
780 |
<ul class="contributors"> |
|
781 |
<?php |
|
9 | 782 |
foreach ( (array) $api->contributors as $contrib_username => $contrib_details ) { |
783 |
$contrib_name = $contrib_details['display_name']; |
|
784 |
if ( ! $contrib_name ) { |
|
785 |
$contrib_name = $contrib_username; |
|
5 | 786 |
} |
9 | 787 |
$contrib_name = esc_html( $contrib_name ); |
788 |
||
789 |
$contrib_profile = esc_url( $contrib_details['profile'] ); |
|
790 |
$contrib_avatar = esc_url( add_query_arg( 's', '36', $contrib_details['avatar'] ) ); |
|
791 |
||
792 |
echo "<li><a href='{$contrib_profile}' target='_blank'><img src='{$contrib_avatar}' width='18' height='18' alt='' />{$contrib_name}</a></li>"; |
|
5 | 793 |
} |
794 |
?> |
|
795 |
</ul> |
|
9 | 796 |
<?php if ( ! empty( $api->donate_link ) ) { ?> |
5 | 797 |
<a target="_blank" href="<?php echo esc_url( $api->donate_link ); ?>"><?php _e( 'Donate to this plugin »' ); ?></a> |
798 |
<?php } ?> |
|
9 | 799 |
<?php } ?> |
0 | 800 |
</div> |
9 | 801 |
<div id="section-holder"> |
0 | 802 |
<?php |
9 | 803 |
$requires_php = isset( $api->requires_php ) ? $api->requires_php : null; |
804 |
$requires_wp = isset( $api->requires ) ? $api->requires : null; |
|
805 |
||
806 |
$compatible_php = is_php_version_compatible( $requires_php ); |
|
807 |
$compatible_wp = is_wp_version_compatible( $requires_wp ); |
|
808 |
$tested_wp = ( empty( $api->tested ) || version_compare( get_bloginfo( 'version' ), $api->tested, '<=' ) ); |
|
809 |
||
810 |
if ( ! $compatible_php ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
811 |
$compatible_php_notice_message = '<p>'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
812 |
$compatible_php_notice_message .= __( '<strong>Error:</strong> This plugin <strong>requires a newer version of PHP</strong>.' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
813 |
|
9 | 814 |
if ( current_user_can( 'update_php' ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
815 |
$compatible_php_notice_message .= sprintf( |
16 | 816 |
/* translators: %s: URL to Update PHP page. */ |
9 | 817 |
' ' . __( '<a href="%s" target="_blank">Click here to learn more about updating PHP</a>.' ), |
818 |
esc_url( wp_get_update_php_url() ) |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
819 |
) . wp_update_php_annotation( '</p><p><em>', '</em>', false ); |
9 | 820 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
821 |
$compatible_php_notice_message .= '</p>'; |
9 | 822 |
} |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
823 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
824 |
wp_admin_notice( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
825 |
$compatible_php_notice_message, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
826 |
array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
827 |
'type' => 'error', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
828 |
'additional_classes' => array( 'notice-alt' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
829 |
'paragraph_wrap' => false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
830 |
) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
831 |
); |
9 | 832 |
} |
833 |
||
834 |
if ( ! $tested_wp ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
835 |
wp_admin_notice( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
836 |
__( '<strong>Warning:</strong> This plugin <strong>has not been tested</strong> with your current version of WordPress.' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
837 |
array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
838 |
'type' => 'warning', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
839 |
'additional_classes' => array( 'notice-alt' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
840 |
) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
841 |
); |
9 | 842 |
} elseif ( ! $compatible_wp ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
843 |
$compatible_wp_notice_message = __( '<strong>Error:</strong> This plugin <strong>requires a newer version of WordPress</strong>.' ); |
9 | 844 |
if ( current_user_can( 'update_core' ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
845 |
$compatible_wp_notice_message .= sprintf( |
16 | 846 |
/* translators: %s: URL to WordPress Updates screen. */ |
9 | 847 |
' ' . __( '<a href="%s" target="_parent">Click here to update WordPress</a>.' ), |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
848 |
esc_url( self_admin_url( 'update-core.php' ) ) |
9 | 849 |
); |
850 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
851 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
852 |
wp_admin_notice( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
853 |
$compatible_wp_notice_message, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
854 |
array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
855 |
'type' => 'error', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
856 |
'additional_classes' => array( 'notice-alt' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
857 |
) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
858 |
); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
859 |
} |
0 | 860 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
861 |
foreach ( (array) $api->sections as $section_name => $content ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
862 |
$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
|
863 |
$content = links_add_target( $content, '_blank' ); |
0 | 864 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
865 |
$san_section = esc_attr( $section_name ); |
0 | 866 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
867 |
$display = ( $section_name === $section ) ? 'block' : 'none'; |
0 | 868 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
869 |
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
|
870 |
echo $content; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
871 |
echo "\t</div>\n"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
872 |
} |
0 | 873 |
echo "</div>\n"; |
5 | 874 |
echo "</div>\n"; |
875 |
echo "</div>\n"; // #plugin-information-scrollable |
|
876 |
echo "<div id='$tab-footer'>\n"; |
|
877 |
if ( ! empty( $api->download_link ) && ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
878 |
$button = wp_get_plugin_action_button( $api->name, $api, $compatible_php, $compatible_wp ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
879 |
$button = str_replace( 'class="', 'class="right ', $button ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
880 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
881 |
if ( ! str_contains( $button, _x( 'Activate', 'plugin' ) ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
882 |
$button = str_replace( 'class="', 'id="plugin_install_from_iframe" class="', $button ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
883 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
884 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
885 |
echo wp_kses_post( $button ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
886 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
887 |
echo "</div>\n"; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
888 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
889 |
wp_print_request_filesystem_credentials_modal(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
890 |
wp_print_admin_notice_templates(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
891 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
892 |
iframe_footer(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
893 |
exit; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
894 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
895 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
896 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
897 |
* Gets the markup for the plugin install action button. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
898 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
899 |
* @since 6.5.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
900 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
901 |
* @param string $name Plugin name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
902 |
* @param array|object $data { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
903 |
* An array or object of plugin data. Can be retrieved from the API. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
904 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
905 |
* @type string $slug The plugin slug. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
906 |
* @type string[] $requires_plugins An array of plugin dependency slugs. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
907 |
* @type string $version The plugin's version string. Used when getting the install status. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
908 |
* } |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
909 |
* @param bool $compatible_php The result of a PHP compatibility check. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
910 |
* @param bool $compatible_wp The result of a WP compatibility check. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
911 |
* @return string The markup for the dependency row button. An empty string if the user does not have capabilities. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
912 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
913 |
function wp_get_plugin_action_button( $name, $data, $compatible_php, $compatible_wp ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
914 |
$button = ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
915 |
$data = (object) $data; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
916 |
$status = install_plugin_install_status( $data ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
917 |
$requires_plugins = $data->requires_plugins ?? array(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
918 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
919 |
// Determine the status of plugin dependencies. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
920 |
$installed_plugins = get_plugins(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
921 |
$active_plugins = get_option( 'active_plugins', array() ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
922 |
$plugin_dependencies_count = count( $requires_plugins ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
923 |
$installed_plugin_dependencies_count = 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
924 |
$active_plugin_dependencies_count = 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
925 |
foreach ( $requires_plugins as $dependency ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
926 |
foreach ( array_keys( $installed_plugins ) as $installed_plugin_file ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
927 |
if ( str_contains( $installed_plugin_file, '/' ) && explode( '/', $installed_plugin_file )[0] === $dependency ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
928 |
++$installed_plugin_dependencies_count; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
929 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
930 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
931 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
932 |
foreach ( $active_plugins as $active_plugin_file ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
933 |
if ( str_contains( $active_plugin_file, '/' ) && explode( '/', $active_plugin_file )[0] === $dependency ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
934 |
++$active_plugin_dependencies_count; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
935 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
936 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
937 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
938 |
$all_plugin_dependencies_installed = $installed_plugin_dependencies_count === $plugin_dependencies_count; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
939 |
$all_plugin_dependencies_active = $active_plugin_dependencies_count === $plugin_dependencies_count; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
940 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
941 |
if ( current_user_can( 'install_plugins' ) || current_user_can( 'update_plugins' ) ) { |
5 | 942 |
switch ( $status['status'] ) { |
943 |
case 'install': |
|
944 |
if ( $status['url'] ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
945 |
if ( $compatible_php && $compatible_wp && $all_plugin_dependencies_installed && ! empty( $data->download_link ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
946 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
947 |
'<a class="install-now button" data-slug="%s" href="%s" aria-label="%s" data-name="%s" role="button">%s</a>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
948 |
esc_attr( $data->slug ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
949 |
esc_url( $status['url'] ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
950 |
/* translators: %s: Plugin name and version. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
951 |
esc_attr( sprintf( _x( 'Install %s now', 'plugin' ), $name ) ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
952 |
esc_attr( $name ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
953 |
_x( 'Install Now', 'plugin' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
954 |
); |
9 | 955 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
956 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
957 |
'<button type="button" class="install-now button button-disabled" disabled="disabled">%s</button>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
958 |
_x( 'Install Now', 'plugin' ) |
9 | 959 |
); |
960 |
} |
|
5 | 961 |
} |
962 |
break; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
963 |
|
5 | 964 |
case 'update_available': |
965 |
if ( $status['url'] ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
966 |
if ( $compatible_php && $compatible_wp ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
967 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
968 |
'<a class="update-now button aria-button-if-js" data-plugin="%s" data-slug="%s" href="%s" aria-label="%s" data-name="%s" role="button">%s</a>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
969 |
esc_attr( $status['file'] ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
970 |
esc_attr( $data->slug ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
971 |
esc_url( $status['url'] ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
972 |
/* translators: %s: Plugin name and version. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
973 |
esc_attr( sprintf( _x( 'Update %s now', 'plugin' ), $name ) ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
974 |
esc_attr( $name ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
975 |
_x( 'Update Now', 'plugin' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
976 |
); |
9 | 977 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
978 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
979 |
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
980 |
_x( 'Update Now', 'plugin' ) |
9 | 981 |
); |
982 |
} |
|
5 | 983 |
} |
984 |
break; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
985 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
986 |
case 'latest_installed': |
5 | 987 |
case 'newer_installed': |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
988 |
if ( is_plugin_active( $status['file'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
989 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
990 |
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
991 |
_x( 'Active', 'plugin' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
992 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
993 |
} elseif ( current_user_can( 'activate_plugin', $status['file'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
994 |
if ( $compatible_php && $compatible_wp && $all_plugin_dependencies_active ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
995 |
$button_text = _x( 'Activate', 'plugin' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
996 |
/* translators: %s: Plugin name. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
997 |
$button_label = _x( 'Activate %s', 'plugin' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
998 |
$activate_url = add_query_arg( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
999 |
array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1000 |
'_wpnonce' => wp_create_nonce( 'activate-plugin_' . $status['file'] ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1001 |
'action' => 'activate', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1002 |
'plugin' => $status['file'], |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1003 |
), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1004 |
network_admin_url( 'plugins.php' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1005 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1006 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1007 |
if ( is_network_admin() ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1008 |
$button_text = _x( 'Network Activate', 'plugin' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1009 |
/* translators: %s: Plugin name. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1010 |
$button_label = _x( 'Network Activate %s', 'plugin' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1011 |
$activate_url = add_query_arg( array( 'networkwide' => 1 ), $activate_url ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1012 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1013 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1014 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1015 |
'<a href="%1$s" data-name="%2$s" data-slug="%3$s" data-plugin="%4$s" class="button button-primary activate-now" aria-label="%5$s" role="button">%6$s</a>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1016 |
esc_url( $activate_url ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1017 |
esc_attr( $name ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1018 |
esc_attr( $data->slug ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1019 |
esc_attr( $status['file'] ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1020 |
esc_attr( sprintf( $button_label, $name ) ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1021 |
$button_text |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1022 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1023 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1024 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1025 |
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1026 |
is_network_admin() ? _x( 'Network Activate', 'plugin' ) : _x( 'Activate', 'plugin' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1027 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1028 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1029 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1030 |
$button = sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1031 |
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1032 |
_x( 'Installed', 'plugin' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1033 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1034 |
} |
5 | 1035 |
break; |
1036 |
} |
|
1037 |
} |
|
0 | 1038 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1039 |
return $button; |
0 | 1040 |
} |