Ticket #43992: 43992-5.diff
File 43992-5.diff, 5.7 KB (added by , 2 years ago) |
---|
-
src/wp-admin/includes/plugin.php
diff --git src/wp-admin/includes/plugin.php src/wp-admin/includes/plugin.php index c898fc5169..ed9b8425dc 100644
31 31 * Network: Optional. Specify "Network: true" to require that a plugin is activated 32 32 * across all sites in an installation. This will prevent a plugin from being 33 33 * activated on a single site when Multisite is enabled. 34 * Requires WP: Optional. Specify the minimum required WordPress version. 35 * Requires PHP: Optional. Specify the minimum required PHP version. 34 36 * * / # Remove the space to close comment 35 37 * 36 38 * Some users have issues with opening large files and manipulating the contents … … 63 65 * @type string $TextDomain Plugin textdomain. 64 66 * @type string $DomainPath Plugins relative directory path to .mo files. 65 67 * @type bool $Network Whether the plugin can only be activated network-wide. 68 * @type string $RequiresWP Minimum required version of WordPress. 69 * @type string $RequiresPHP Minimum required version of PHP. 70 66 71 * } 67 72 */ 68 73 function get_plugin_data( $plugin_file, $markup = true, $translate = true ) { … … function get_plugin_data( $plugin_file, $markup = true, $translate = true ) { 77 82 'TextDomain' => 'Text Domain', 78 83 'DomainPath' => 'Domain Path', 79 84 'Network' => 'Network', 85 'RequiresWP' => 'Requires WP', 86 'RequiresPHP' => 'Requires PHP', 80 87 // Site Wide Only is deprecated in favor of Network. 81 88 '_sitewide' => 'Site Wide Only', 82 89 ); … … function _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup 189 196 return $plugin_data; 190 197 } 191 198 199 /** 200 * Get the and return plugin data used for validation. 201 * 202 * Initially use the Plugin API as there's no current method to parse the local plugin readme.txt file. 203 * Alternately see if a plugin header `Requires WP` or `Requires PHP` exists and use that. 204 * 205 * @since 5.1.0 206 * @see validate_plugin_requirements() 207 * 208 * @param string $plugin Path to the plugin file relative to the plugins directory. 209 * 210 * @return object $plugin_data Object of plugin data for validation. 211 */ 212 function get_plugin_validation_data( $plugin_file ) { 213 $plugin_data = new stdClass(); 214 $url = 'https://api.wordpress.org/plugins/info/1.2/'; 215 $url = add_query_arg( 216 array( 217 'action' => 'plugin_information', 218 rawurlencode( 'request[slug]' ) => dirname( $plugin_file ), 219 ), 220 $url 221 ); 222 $response = wp_remote_get( $url ); 223 if ( ! is_wp_error( $response ) ) { 224 $plugin_data = json_decode( wp_remote_retrieve_body( $response ) ); 225 } 226 227 /* 228 * Plugin is likley not in the WP Plugin Directory but if they have designated 229 * `Requires WP` and/or `Requires PHP` headers we can use those. 230 */ 231 if ( isset( $plugin_data->error ) || is_wp_error( $response ) ) { 232 $plugin_headers = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin_file ); 233 $plugin_data->requires = $plugin_headers['RequiresWP']; 234 $plugin_data->requires_php = $plugin_headers['RequiresPHP']; 235 } 236 237 return $plugin_data; 238 } 239 192 240 /** 193 241 * Get a list of a plugin's files. 194 242 * … … function activate_plugin( $plugin, $redirect = '', $network_wide = false, $silen 589 637 return $valid; 590 638 } 591 639 640 if ( validate_plugin_requirements( $plugin ) ) { 641 return new WP_Error( 'plugin_activation_error', __( 'Plugin does not meet minimum WordPress and/or PHP requirements.' ) ); 642 } 643 592 644 if ( ( $network_wide && ! isset( $current[ $plugin ] ) ) || ( ! $network_wide && ! in_array( $plugin, $current ) ) ) { 593 645 if ( ! empty( $redirect ) ) { 594 646 wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) ); // we'll override this later if the plugin can be included without fatal error … … function validate_plugin( $plugin ) { 1023 1075 return 0; 1024 1076 } 1025 1077 1078 /** 1079 * Validate the plugin requirements for WP version and PHP version. 1080 * 1081 * @uses get_plugin_validation_data() 1082 * 1083 * @since 5.1.0 1084 * @see activate_plugin() 1085 * 1086 * @param string $plugin Path to the plugin file relative to the plugins directory. 1087 * 1088 * @return bool Default to true and if requirements met, false if not. 1089 */ 1090 function validate_plugin_requirements( $plugin ) { 1091 $plugin_data = get_plugin_validation_data( $plugin ); 1092 $wp_requires = isset( $plugin_data->requires ) ? $plugin_data->requires : null; 1093 $php_requires = isset( $plugin_data->requires_php ) ? $plugin_data->requires_php : null; 1094 1095 return ! ( is_compatible_wp( $wp_requires ) && is_compatible_php( $php_requires ) ); 1096 } 1097 1026 1098 /** 1027 1099 * Whether the plugin can be uninstalled. 1028 1100 * -
src/wp-includes/functions.php
diff --git src/wp-includes/functions.php src/wp-includes/functions.php index 471fcbb5d6..bfc3142b04 100644
function wp_privacy_delete_old_export_files() { 6553 6553 } 6554 6554 } 6555 6555 } 6556 6557 /** 6558 * Check compatibility with current WordPress version. 6559 * 6560 * @since 5.1.0 6561 * 6562 * @param string $requires Minimum WordPress version from API. 6563 * 6564 * @return bool Default true if requirement met or empty, false if not met. 6565 */ 6566 function is_compatible_wp( $requires ) { 6567 $wp_version = get_bloginfo( 'version' ); 6568 return ( empty( $requires ) || version_compare( substr( $wp_version, 0, strlen( $requires ) ), $requires, '>=' ) ); 6569 } 6570 6571 /** 6572 * Check compatibility with current PHP version. 6573 * 6574 * @since 5.1.0 6575 * 6576 * @param string $requires Minimum PHP version from API. 6577 * 6578 * @return bool Default true if requirement met or empty, false if not met. 6579 */ 6580 function is_compatible_php( $requires ) { 6581 return ( empty( $requires ) || version_compare( substr( phpversion(), 0, strlen( $requires ) ), $requires, '>=' ) ); 6582 }