Changeset 3331386
- Timestamp:
- 07/21/2025 11:05:46 AM (8 months ago)
- Location:
- better-plugin-compatibility-control/trunk
- Files:
-
- 5 edited
-
better-plugin-compatibility-control.php (modified) (11 diffs)
-
languages/better-plugin-compatibility-control-de_DE.mo (modified) (previous)
-
languages/better-plugin-compatibility-control-de_DE.po (modified) (5 diffs)
-
languages/better-plugin-compatibility-control.pot (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-plugin-compatibility-control/trunk/better-plugin-compatibility-control.php
r3172462 r3331386 9 9 /* 10 10 Plugin Name: Better Plugin Compatibility Control 11 Version: 6. 6.011 Version: 6.8.0 12 12 Plugin URI: https://wordpress.org/plugins/better-plugin-compatibility-control/ 13 13 Description: Adds version compatibility info to the plugins page to inform the admin at a glance if a plugin is compatible with the current WP version. … … 18 18 19 19 20 Copyright 2008-202 4Oliver Schlöbe (email : scripts@schloebe.de)20 Copyright 2008-2025 Oliver Schlöbe (email : scripts@schloebe.de) 21 21 22 22 This program is free software; you can redistribute it and/or modify … … 39 39 * Define the plugin version 40 40 */ 41 define("BPCC_VERSION", "6. 6.0");41 define("BPCC_VERSION", "6.8.0"); 42 42 43 43 /** … … 93 93 94 94 /** 95 * The BetterPluginCompatibilityControl class constructor96 * initializing required stuff for the plugin97 *98 * @since 1.099 * @author scripts@schloebe.de100 */95 * The BetterPluginCompatibilityControl class constructor 96 * initializing required stuff for the plugin 97 * 98 * @since 1.0 99 * @author scripts@schloebe.de 100 */ 101 101 function __construct() { 102 102 if ( !BPCCISWP29 ) { … … 113 113 114 114 /** 115 * Initialize and load the plugin stuff116 *117 * @since 1.0118 * @uses $pagenow119 * @author scripts@schloebe.de120 */115 * Initialize and load the plugin stuff 116 * 117 * @since 1.0 118 * @uses $pagenow 119 * @author scripts@schloebe.de 120 */ 121 121 function bpcc_init() { 122 122 global $pagenow; … … 124 124 125 125 126 if((defined('WP_ALLOW_MULTISITE') && WP_ALLOW_MULTISITE || defined('MULTISITE') && MULTISITE) && function_exists('is_network_admin') && is_network_admin()) {126 if((defined('WP_ALLOW_MULTISITE') && constant('WP_ALLOW_MULTISITE') || defined('MULTISITE') && constant('MULTISITE')) && function_exists('is_network_admin') && is_network_admin()) { 127 127 add_filter('network_admin_plugin_action_links', array(&$this, 'bpcc_pluginversioninfo'), 10, 2); 128 128 if( current_user_can( 'manage_network_plugins' ) ) { … … 184 184 185 185 /** 186 * Add plugin version dependency info187 *188 * @since 1.0189 * @author scripts@schloebe.de190 */186 * Add plugin version dependency info 187 * 188 * @since 1.0 189 * @author scripts@schloebe.de 190 */ 191 191 function bpcc_pluginversioninfo( $links, $file ) { 192 $_wpversion = str_replace($this->localeInfo["decimal_point"], ".", floatval($GLOBALS['wp_version'])) . ''; // Only get x.y.0 from WP version string 193 192 $_wpversion = str_replace($this->localeInfo["decimal_point"], ".", floatval($GLOBALS['wp_version'])) . ''; 193 $_phpversion = PHP_VERSION; 194 194 195 $minpluginver = $maxpluginver = $minpluginvermajor = ''; 196 $minphpver = $maxphpver = ''; 195 197 $bpcc_readme = WP_PLUGIN_DIR . '/' . dirname( $file ) . '/' . 'readme.txt'; 196 198 if( file_exists( $bpcc_readme ) ) { 197 $pluginver_data = get_file_data( $bpcc_readme, array('requires' => 'Requires at least', 'tested' => 'Tested up to') ); 199 $pluginver_data = get_file_data( $bpcc_readme, array( 200 'requires' => 'Requires at least', 201 'tested' => 'Tested up to', 202 'requires_php' => 'Requires PHP', 203 'tested_php' => 'Tested up to PHP', 204 ) ); 198 205 $minpluginver = $pluginver_data['requires']; 199 206 $minpluginvermajor = str_replace($this->localeInfo["decimal_point"], ".", floatval($minpluginver)) . ''; 200 207 $maxpluginver = $pluginver_data['tested']; 201 208 if( !empty($pluginver_data['tested']) ) $maxpluginver = $pluginver_data['tested']; 209 if( !empty($pluginver_data['requires_php']) ) $minphpver = $pluginver_data['requires_php']; 210 if( !empty($pluginver_data['tested_php']) ) $maxphpver = $pluginver_data['tested_php']; 202 211 } else { 203 212 require_once(ABSPATH . 'wp-admin/includes/plugin-install.php'); 204 $info = plugins_api('plugin_information', array('fields' => array('tested' => true, 'requires' => true, 'r ating' => false, 'downloaded' => false, 'downloadlink' => false, 'last_updated' => false, 'homepage' => false, 'tags' => false, 'sections' => false, 'compatibility' => false, 'author' => false, 'author_profile' => false, 'contributors' => false, 'added' => false), 'slug' => dirname( $file ) ));213 $info = plugins_api('plugin_information', array('fields' => array('tested' => true, 'requires' => true, 'requires_php' => true, 'tested_php' => true, 'rating' => false, 'downloaded' => false, 'downloadlink' => false, 'last_updated' => false, 'homepage' => false, 'tags' => false, 'sections' => false, 'compatibility' => false, 'author' => false, 'author_profile' => false, 'contributors' => false, 'added' => false), 'slug' => dirname( $file ) )); 205 214 if (!is_wp_error($info)) { 206 215 if( !empty($info->requires) ) { … … 209 218 } 210 219 if( !empty($info->tested) ) $maxpluginver = $info->tested; 220 if( !empty($info->requires_php) ) $minphpver = $info->requires_php; 221 if( !empty($info->tested_php) ) $maxphpver = $info->tested_php; 211 222 } 212 223 } 213 224 225 // WordPress compatibility info 214 226 if( $minpluginver != '' || $maxpluginver != '' ) { 215 227 $addminverclass = ( version_compare(trim( $minpluginvermajor ), $_wpversion, '>') ) ? ' bpcc_red' : ' bpcc_green'; 216 228 $addminvertitle = ( version_compare(trim( $minpluginvermajor ), $_wpversion, '>') ) ? __('Warning: This plugin has not been tested with your current version of WordPress.', 'better-plugin-compatibility-control') : __('This plugin has been tested successfully with your current version of WordPress.', 'better-plugin-compatibility-control'); 217 $addminverinfo = ( $minpluginver ) ? '<span class="bpcc_minversion' . $addminverclass . '" title="' . $addminvertitle . '">' . trim( $minpluginver ) . '</span>' : '<span class="bpcc_minversion" title="' . __('No compatibility info for this plugin available.', 'better-plugin-compatibility-control') . '"> ' . __('N/A', 'better-plugin-compatibility-control') . '</span>';218 229 $addminverinfo = ( $minpluginver ) ? '<span class="bpcc_minversion' . $addminverclass . '" title="' . $addminvertitle . '">' . trim( $minpluginver ) . '</span>' : '<span class="bpcc_minversion" title="' . __('No compatibility info for this plugin available.', 'better-plugin-compatibility-control') . '">WP ' . __('N/A', 'better-plugin-compatibility-control') . '</span>'; 230 219 231 $addmaxverclass = ( version_compare(trim( $maxpluginver ), $_wpversion, '<') ) ? ' bpcc_red' : ' bpcc_green'; 220 232 $addminvertitle = ( version_compare(trim( $maxpluginver ), $_wpversion, '<') ) ? __('Warning: This plugin has not been tested with your current version of WordPress.', 'better-plugin-compatibility-control') : __('This plugin has been tested successfully with your current version of WordPress.', 'better-plugin-compatibility-control'); 221 233 $addmaxverinfo = ( $maxpluginver ) ? '<span class="bpcc_maxversion' . $addmaxverclass . '" title="' . $addminvertitle . '">' . trim( $maxpluginver ) . '</span>' : '<span class="bpcc_maxversion" title="' . __('No compatibility info for this plugin available.', 'better-plugin-compatibility-control') . '">' . __('N/A', 'better-plugin-compatibility-control') . '</span>'; 222 223 $addverinfo = '<span class="bpcc_wrapper" style="white-space: normal;"> ' . $addminverinfo . '–' . $addmaxverinfo . '';234 235 $addverinfo = '<span class="bpcc_wrapper" style="white-space: normal;">WP ' . $addminverinfo . '–' . $addmaxverinfo . ''; 224 236 } else { 225 237 $addverinfo = '<span class="bpcc_wrapper" style="white-space: normal;"><span class="bpcc_maxversion" title="' . __('No readme.txt file for this plugin found. Contact the plugin author!', 'better-plugin-compatibility-control') . '">' . __('No compatibility data found', 'better-plugin-compatibility-control') . '</span></span>'; 226 238 } 227 228 $links = array_merge( $links, array( $addverinfo ) ); 229 239 240 // PHP compatibility info 241 if( $minphpver != '' || $maxphpver != '' ) { 242 $addminphpverclass = ( $minphpver && version_compare(trim( $minphpver ), $_phpversion, '>') ) ? ' bpcc_red' : ' bpcc_green'; 243 $addminphpvertitle = ( $minphpver && version_compare(trim( $minphpver ), $_phpversion, '>') ) ? __('Warning: This plugin has not been tested with your current PHP version.', 'better-plugin-compatibility-control') : __('This plugin has been tested successfully with your current PHP version.', 'better-plugin-compatibility-control'); 244 $addminphpverinfo = ( $minphpver ) ? '<span class="bpcc_minversion' . $addminphpverclass . '" title="' . $addminphpvertitle . '">' . trim( $minphpver ) . '</span>' : '<span class="bpcc_minversion" title="' . __('No PHP compatibility info for this plugin available.', 'better-plugin-compatibility-control') . '">PHP N/A</span>'; 245 246 $addmaxphpverclass = ( $maxphpver && version_compare(trim( $maxphpver ), $_phpversion, '<') ) ? ' bpcc_red' : ' bpcc_green'; 247 $addmaxphpvertitle = ( $maxphpver && version_compare(trim( $maxphpver ), $_phpversion, '<') ) ? __('Warning: This plugin has not been tested with your current PHP version.', 'better-plugin-compatibility-control') : __('This plugin has been tested successfully with your current PHP version.', 'better-plugin-compatibility-control'); 248 $addmaxphpverinfo = ( $maxphpver ) ? '<span class="bpcc_maxversion' . $addmaxphpverclass . '" title="' . $addmaxphpvertitle . '">' . trim( $maxphpver ) . '</span>' : '<span class="bpcc_maxversion" title="' . __('No max PHP compatibility info for this plugin available.', 'better-plugin-compatibility-control') . '">N/A</span>'; 249 250 $addphpverinfo = '<span class="bpcc_wrapper" style="white-space: normal;"> | PHP ' . $addminphpverinfo . '–' . $addmaxphpverinfo . '</span>'; 251 } else { 252 $addphpverinfo = ''; 253 } 254 255 $links = array_merge( $links, array( $addverinfo . $addphpverinfo ) ); 256 230 257 return $links; 231 258 } … … 233 260 234 261 /** 235 * Initialize and load the plugin textdomain236 *237 * @since 1.0238 * @author scripts@schloebe.de239 */262 * Initialize and load the plugin textdomain 263 * 264 * @since 1.0 265 * @author scripts@schloebe.de 266 */ 240 267 function bpcc_load_textdomain() { 241 268 load_plugin_textdomain('better-plugin-compatibility-control', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/'); … … 244 271 245 272 /** 246 * Checks for the version of WordPress,247 * and adds a message to inform the user248 * if required WP version is less than 2.9249 *250 * @since 3.8.1.15251 * @author scripts@schloebe.de252 */273 * Checks for the version of WordPress, 274 * and adds a message to inform the user 275 * if required WP version is less than 2.9 276 * 277 * @since 3.8.1.15 278 * @author scripts@schloebe.de 279 */ 253 280 function wpVersionFailed() { 254 281 echo "<div id='wpversionfailedmessage' class='error fade'><p>" . __('Better Plugin Compatibility Control requires at least WordPress 2.9!', 'better-plugin-compatibility-control') . "</p></div>"; … … 260 287 add_action( 'plugins_loaded', array( 'BetterPluginCompatibilityControl', 'get_instance' ) ); 261 288 } 262 ?> -
better-plugin-compatibility-control/trunk/languages/better-plugin-compatibility-control-de_DE.po
r1562970 r3331386 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2016-12-27 21:32+0000\n" 6 "PO-Revision-Date: 20 16-12-27 21:33+0000\n"6 "PO-Revision-Date: 2025-07-21 09:39+0000\n" 7 7 "Last-Translator: Alphawolf <scripts@schloebe.de>\n" 8 "Language-Team: German\n"8 "Language-Team: Deutsch\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "Plural-Forms: nplurals=2; plural=n != 1 \n"13 "X-Generator: Loco -https://localise.biz/\n"12 "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 "X-Generator: Loco https://localise.biz/\n" 14 14 "X-Poedit-Language: German\n" 15 15 "X-Poedit-Country: GERMANY\n" … … 21 21 "X-Poedit-SearchPath-0: .\n" 22 22 "X-Textdomain-Support: yes\n" 23 "Language: de-DE" 24 25 #. Name of the plugin 26 msgid "Better Plugin Compatibility Control" 27 msgstr "Better Plugin Compatibility Control" 23 "Language: de_DE" 28 24 29 25 #. Description of the plugin … … 35 31 "einen Blick die Kompatibilität mit WordPress zu erkennen." 36 32 33 #. Name of the plugin 34 msgid "Better Plugin Compatibility Control" 35 msgstr "Better Plugin Compatibility Control" 36 37 #: better-plugin-compatibility-control.php:281 38 msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!" 39 msgstr "Better Plugin Compatibility Control benötigt mindestens WordPress 2.9!" 40 37 41 #. URI of the plugin 38 msgid "" 39 "https://www.schloebe.de/wordpress/better-plugin-compatibility-control-plugin/" 42 msgid "https://wordpress.org/plugins/better-plugin-compatibility-control/" 43 msgstr "https://de.wordpress.org/plugins/better-plugin-compatibility-control/" 44 45 #. Author URI of the plugin 46 msgid "https://www.schloebe.de/" 47 msgstr "https://www.schloebe.de/" 48 49 #: better-plugin-compatibility-control.php:229 50 #: better-plugin-compatibility-control.php:233 51 msgid "N/A" 52 msgstr "N/V" 53 54 #: better-plugin-compatibility-control.php:237 55 msgid "No compatibility data found" 56 msgstr "Keine Daten zur Kompatibilität gefunden" 57 58 #: better-plugin-compatibility-control.php:229 59 #: better-plugin-compatibility-control.php:233 60 msgid "No compatibility info for this plugin available." 61 msgstr "Keine Kompatibilitäts-Infos zu diesem Plugin verfügbar." 62 63 #: better-plugin-compatibility-control.php:248 64 msgid "No max PHP compatibility info for this plugin available." 65 msgstr "Keine max. PHP-Kompatibilitäts-Infos zu diesem Plugin verfügbar." 66 67 #: better-plugin-compatibility-control.php:244 68 msgid "No PHP compatibility info for this plugin available." 69 msgstr "Keine PHP-Kompatibilitäts-Infos zu diesem Plugin verfügbar." 70 71 #: better-plugin-compatibility-control.php:237 72 msgid "No readme.txt file for this plugin found. Contact the plugin author!" 40 73 msgstr "" 41 "https://www.schloebe.de/wordpress/better-plugin-compatibility-control-plugin/" 74 "Keine readme.txt-Datei für dieses Plugin gefunden. Wenden Sie sich an den " 75 "Plugin-Autor!" 42 76 43 77 #. Author of the plugin … … 45 79 msgstr "Oliver Schlöbe" 46 80 47 #. Author URI of the plugin 48 msgid "https://www.schloebe.de/" 49 msgstr "https://www.schloebe.de/" 81 #: better-plugin-compatibility-control.php:243 82 #: better-plugin-compatibility-control.php:247 83 msgid "This plugin has been tested successfully with your current PHP version." 84 msgstr "" 85 "Dieses Plugin wurde erfolgreich mit Ihrer aktuellen Version von PHP getestet." 50 86 51 #: better-plugin-compatibility-control.php:206 52 #: better-plugin-compatibility-control.php:210 53 msgid "" 54 "Warning: This plugin has not been tested with your current version of " 55 "WordPress." 56 msgstr "" 57 "Warnung: Dieses Plugin wurde nicht mit Ihrer aktuellen Version von WordPress " 58 "getestet." 59 60 #: better-plugin-compatibility-control.php:206 61 #: better-plugin-compatibility-control.php:210 87 #: better-plugin-compatibility-control.php:228 88 #: better-plugin-compatibility-control.php:232 62 89 msgid "" 63 90 "This plugin has been tested successfully with your current version of " … … 67 94 "getestet." 68 95 69 #: better-plugin-compatibility-control.php:207 70 #: better-plugin-compatibility-control.php:211 71 msgid "No compatibility info for this plugin available." 72 msgstr "Keine Kompatibilitäts-Infos zu diesem Plugin verfügbar." 96 #: better-plugin-compatibility-control.php:243 97 #: better-plugin-compatibility-control.php:247 98 msgid "Warning: This plugin has not been tested with your current PHP version." 99 msgstr "" 100 "Warnung: Dieses Plugin wurde nicht mit Ihrer aktuellen Version von PHP " 101 "getestet." 73 102 74 #: better-plugin-compatibility-control.php:207 75 #: better-plugin-compatibility-control.php:211 76 msgid "N/A" 77 msgstr "N/V" 78 79 #: better-plugin-compatibility-control.php:215 80 msgid "No readme.txt file for this plugin found. Contact the plugin author!" 103 #: better-plugin-compatibility-control.php:228 104 #: better-plugin-compatibility-control.php:232 105 msgid "" 106 "Warning: This plugin has not been tested with your current version of " 107 "WordPress." 81 108 msgstr "" 82 "Keine readme.txt-Datei für dieses Plugin gefunden. Wenden Sie sich an den " 83 "Plugin-Autor!" 84 85 #: better-plugin-compatibility-control.php:215 86 msgid "No compatibility data found" 87 msgstr "Keine Daten zur Kompatibilität gefunden" 88 89 #: better-plugin-compatibility-control.php:244 90 msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!" 91 msgstr "Better Plugin Compatibility Control benötigt mindestens WordPress 2.9!" 109 "Warnung: Dieses Plugin wurde nicht mit Ihrer aktuellen Version von WordPress " 110 "getestet." -
better-plugin-compatibility-control/trunk/languages/better-plugin-compatibility-control.pot
r1562970 r3331386 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: PACKAGE VERSION\n"4 "Project-Id-Version: Better Plugin Compatibility Control\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 20 16-12-27 21:31+0000\n"6 "POT-Creation-Date: 2025-07-21 09:39+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 13 13 "Content-Type: text/plain; charset=UTF-8\n" 14 14 "Content-Transfer-Encoding: 8bit\n" 15 "X-Generator: Loco https://localise.biz/" 16 17 #: better-plugin-compatibility-control.php:206 18 #: better-plugin-compatibility-control.php:210 19 msgid "" 20 "Warning: This plugin has not been tested with your current version of " 21 "WordPress." 22 msgstr "" 23 24 #: better-plugin-compatibility-control.php:206 25 #: better-plugin-compatibility-control.php:210 26 msgid "" 27 "This plugin has been tested successfully with your current version of " 28 "WordPress." 29 msgstr "" 30 31 #: better-plugin-compatibility-control.php:207 32 #: better-plugin-compatibility-control.php:211 33 msgid "No compatibility info for this plugin available." 34 msgstr "" 35 36 #: better-plugin-compatibility-control.php:207 37 #: better-plugin-compatibility-control.php:211 38 msgid "N/A" 39 msgstr "" 40 41 #: better-plugin-compatibility-control.php:215 42 msgid "No readme.txt file for this plugin found. Contact the plugin author!" 43 msgstr "" 44 45 #: better-plugin-compatibility-control.php:215 46 msgid "No compatibility data found" 47 msgstr "" 48 49 #: better-plugin-compatibility-control.php:244 50 msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!" 51 msgstr "" 52 53 #. Name of the plugin 54 msgid "Better Plugin Compatibility Control" 55 msgstr "" 15 "X-Generator: Loco https://localise.biz/\n" 16 "X-Loco-Version: 2.8.0; wp-6.8.2; php-8.3.23\n" 17 "X-Domain: better-plugin-compatibility-control" 56 18 57 19 #. Description of the plugin … … 61 23 msgstr "" 62 24 25 #. Name of the plugin 26 msgid "Better Plugin Compatibility Control" 27 msgstr "" 28 29 #: better-plugin-compatibility-control.php:281 30 msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!" 31 msgstr "" 32 63 33 #. URI of the plugin 64 msgid "" 65 "https://www.schloebe.de/wordpress/better-plugin-compatibility-control-plugin/" 34 msgid "https://wordpress.org/plugins/better-plugin-compatibility-control/" 35 msgstr "" 36 37 #. Author URI of the plugin 38 msgid "https://www.schloebe.de/" 39 msgstr "" 40 41 #: better-plugin-compatibility-control.php:229 42 #: better-plugin-compatibility-control.php:233 43 msgid "N/A" 44 msgstr "" 45 46 #: better-plugin-compatibility-control.php:237 47 msgid "No compatibility data found" 48 msgstr "" 49 50 #: better-plugin-compatibility-control.php:229 51 #: better-plugin-compatibility-control.php:233 52 msgid "No compatibility info for this plugin available." 53 msgstr "" 54 55 #: better-plugin-compatibility-control.php:248 56 msgid "No max PHP compatibility info for this plugin available." 57 msgstr "" 58 59 #: better-plugin-compatibility-control.php:244 60 msgid "No PHP compatibility info for this plugin available." 61 msgstr "" 62 63 #: better-plugin-compatibility-control.php:237 64 msgid "No readme.txt file for this plugin found. Contact the plugin author!" 66 65 msgstr "" 67 66 … … 70 69 msgstr "" 71 70 72 #. Author URI of the plugin 73 msgid "https://www.schloebe.de/" 71 #: better-plugin-compatibility-control.php:243 72 #: better-plugin-compatibility-control.php:247 73 msgid "This plugin has been tested successfully with your current PHP version." 74 74 msgstr "" 75 76 #: better-plugin-compatibility-control.php:228 77 #: better-plugin-compatibility-control.php:232 78 msgid "" 79 "This plugin has been tested successfully with your current version of " 80 "WordPress." 81 msgstr "" 82 83 #: better-plugin-compatibility-control.php:243 84 #: better-plugin-compatibility-control.php:247 85 msgid "Warning: This plugin has not been tested with your current PHP version." 86 msgstr "" 87 88 #: better-plugin-compatibility-control.php:228 89 #: better-plugin-compatibility-control.php:232 90 msgid "" 91 "Warning: This plugin has not been tested with your current version of " 92 "WordPress." 93 msgstr "" -
better-plugin-compatibility-control/trunk/readme.txt
r3271911 r3331386 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Adds version compatibility info to the plugins page to inform the admin at a glance if a plugin is compatible with the current WP version.11 Adds version compatibility info to the plugins page to inform the admin at a glance if a plugin is compatible with the current WP and PHP version. 12 12 13 13 == Description == 14 14 15 **Better Plugin Compatibility Control** makes it easy for the blog administrator to **check compatibility of all installed plugins**. The plugin adds version compatibility info to the plugins page to inform the admin at a glance if a plugin is compatible with the current WP version . Until now you had to look it up on the respective plugin page. It's now up to the admin wether to deactivate a non-compatible plugin or not.15 **Better Plugin Compatibility Control** makes it easy for the blog administrator to **check compatibility of all installed plugins**. The plugin adds version compatibility info to the plugins page to inform the admin at a glance if a plugin is compatible with the current WP version and PHP version. Until now you had to look it up on the respective plugin page. It's now up to the admin wether to deactivate a non-compatible plugin or not. 16 16 17 17 **Included languages:** … … 56 56 == Changelog == 57 57 58 = 6.8.0 = 59 * Added PHP compatibility info 60 58 61 = 6.6.0 = 59 62 * compatibility bump
Note: See TracChangeset
for help on using the changeset viewer.