Plugin Directory

Changeset 3331386


Ignore:
Timestamp:
07/21/2025 11:05:46 AM (8 months ago)
Author:
Alphawolf
Message:

Added PHP compatibility info

Location:
better-plugin-compatibility-control/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • better-plugin-compatibility-control/trunk/better-plugin-compatibility-control.php

    r3172462 r3331386  
    99/*
    1010Plugin Name: Better Plugin Compatibility Control
    11 Version: 6.6.0
     11Version: 6.8.0
    1212Plugin URI: https://wordpress.org/plugins/better-plugin-compatibility-control/
    1313Description: 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.
     
    1818
    1919
    20 Copyright 2008-2024 Oliver Schlöbe (email : scripts@schloebe.de)
     20Copyright 2008-2025 Oliver Schlöbe (email : scripts@schloebe.de)
    2121
    2222This program is free software; you can redistribute it and/or modify
     
    3939 * Define the plugin version
    4040 */
    41 define("BPCC_VERSION", "6.6.0");
     41define("BPCC_VERSION", "6.8.0");
    4242
    4343/**
     
    9393   
    9494    /**
    95     * The BetterPluginCompatibilityControl class constructor
    96     * initializing required stuff for the plugin
    97     *
    98     * @since 1.0
    99     * @author scripts@schloebe.de
    100     */
     95    * The BetterPluginCompatibilityControl class constructor
     96    * initializing required stuff for the plugin
     97    *
     98    * @since 1.0
     99    * @author scripts@schloebe.de
     100    */
    101101    function __construct() {
    102102        if ( !BPCCISWP29 ) {
     
    113113   
    114114    /**
    115     * Initialize and load the plugin stuff
    116     *
    117     * @since 1.0
    118     * @uses $pagenow
    119     * @author scripts@schloebe.de
    120     */
     115    * Initialize and load the plugin stuff
     116    *
     117    * @since 1.0
     118    * @uses $pagenow
     119    * @author scripts@schloebe.de
     120    */
    121121    function bpcc_init() {
    122122        global $pagenow;
     
    124124       
    125125       
    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()) {
    127127            add_filter('network_admin_plugin_action_links', array(&$this, 'bpcc_pluginversioninfo'), 10, 2);
    128128            if( current_user_can( 'manage_network_plugins' ) ) {
     
    184184   
    185185    /**
    186     * Add plugin version dependency info
    187     *
    188     * @since 1.0
    189     * @author scripts@schloebe.de
    190     */
     186    * Add plugin version dependency info
     187    *
     188    * @since 1.0
     189    * @author scripts@schloebe.de
     190    */
    191191    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
    194195        $minpluginver = $maxpluginver = $minpluginvermajor = '';
     196        $minphpver = $maxphpver = '';
    195197        $bpcc_readme = WP_PLUGIN_DIR . '/' . dirname( $file ) . '/' . 'readme.txt';
    196198        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            ) );
    198205            $minpluginver = $pluginver_data['requires'];
    199206            $minpluginvermajor = str_replace($this->localeInfo["decimal_point"], ".", floatval($minpluginver)) . '';
    200207            $maxpluginver = $pluginver_data['tested'];
    201208            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'];
    202211        } else {
    203212            require_once(ABSPATH . 'wp-admin/includes/plugin-install.php');
    204             $info = plugins_api('plugin_information', array('fields' => array('tested' => true, 'requires' => 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 ) ));
     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 ) ));
    205214            if (!is_wp_error($info)) {
    206215                if( !empty($info->requires) ) {
     
    209218                }
    210219                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;
    211222            }
    212223        }
    213        
     224
     225        // WordPress compatibility info
    214226        if( $minpluginver != '' || $maxpluginver != '' ) {
    215227            $addminverclass = ( version_compare(trim( $minpluginvermajor ), $_wpversion, '>') ) ? ' bpcc_red' : ' bpcc_green';
    216228            $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
    219231            $addmaxverclass = ( version_compare(trim( $maxpluginver ), $_wpversion, '<') ) ? ' bpcc_red' : ' bpcc_green';
    220232            $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');
    221233            $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 . '&ndash;' . $addmaxverinfo . '';
     234
     235            $addverinfo = '<span class="bpcc_wrapper" style="white-space: normal;">WP ' . $addminverinfo . '&ndash;' . $addmaxverinfo . '';
    224236        } else {
    225237            $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>';
    226238        }
    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 . '&ndash;' . $addmaxphpverinfo . '</span>';
     251        } else {
     252            $addphpverinfo = '';
     253        }
     254
     255        $links = array_merge( $links, array( $addverinfo . $addphpverinfo ) );
     256
    230257        return $links;
    231258    }
     
    233260   
    234261    /**
    235     * Initialize and load the plugin textdomain
    236     *
    237     * @since 1.0
    238     * @author scripts@schloebe.de
    239     */
     262    * Initialize and load the plugin textdomain
     263    *
     264    * @since 1.0
     265    * @author scripts@schloebe.de
     266    */
    240267    function bpcc_load_textdomain() {
    241268        load_plugin_textdomain('better-plugin-compatibility-control', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
     
    244271   
    245272    /**
    246     * Checks for the version of WordPress,
    247     * and adds a message to inform the user
    248     * if required WP version is less than 2.9
    249     *
    250     * @since 3.8.1.15
    251     * @author scripts@schloebe.de
    252     */
     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    */
    253280    function wpVersionFailed() {
    254281        echo "<div id='wpversionfailedmessage' class='error fade'><p>" . __('Better Plugin Compatibility Control requires at least WordPress 2.9!', 'better-plugin-compatibility-control') . "</p></div>";
     
    260287    add_action( 'plugins_loaded', array( 'BetterPluginCompatibilityControl', 'get_instance' ) );
    261288}
    262 ?>
  • better-plugin-compatibility-control/trunk/languages/better-plugin-compatibility-control-de_DE.po

    r1562970 r3331386  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2016-12-27 21:32+0000\n"
    6 "PO-Revision-Date: 2016-12-27 21:33+0000\n"
     6"PO-Revision-Date: 2025-07-21 09:39+0000\n"
    77"Last-Translator: Alphawolf <scripts@schloebe.de>\n"
    8 "Language-Team: German\n"
     8"Language-Team: Deutsch\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1414"X-Poedit-Language: German\n"
    1515"X-Poedit-Country: GERMANY\n"
     
    2121"X-Poedit-SearchPath-0: .\n"
    2222"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"
    2824
    2925#. Description of the plugin
     
    3531"einen Blick die Kompatibilität mit WordPress zu erkennen."
    3632
     33#. Name of the plugin
     34msgid "Better Plugin Compatibility Control"
     35msgstr "Better Plugin Compatibility Control"
     36
     37#: better-plugin-compatibility-control.php:281
     38msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!"
     39msgstr "Better Plugin Compatibility Control benötigt mindestens WordPress 2.9!"
     40
    3741#. URI of the plugin
    38 msgid ""
    39 "https://www.schloebe.de/wordpress/better-plugin-compatibility-control-plugin/"
     42msgid "https://wordpress.org/plugins/better-plugin-compatibility-control/"
     43msgstr "https://de.wordpress.org/plugins/better-plugin-compatibility-control/"
     44
     45#. Author URI of the plugin
     46msgid "https://www.schloebe.de/"
     47msgstr "https://www.schloebe.de/"
     48
     49#: better-plugin-compatibility-control.php:229
     50#: better-plugin-compatibility-control.php:233
     51msgid "N/A"
     52msgstr "N/V"
     53
     54#: better-plugin-compatibility-control.php:237
     55msgid "No compatibility data found"
     56msgstr "Keine Daten zur Kompatibilität gefunden"
     57
     58#: better-plugin-compatibility-control.php:229
     59#: better-plugin-compatibility-control.php:233
     60msgid "No compatibility info for this plugin available."
     61msgstr "Keine Kompatibilitäts-Infos zu diesem Plugin verfügbar."
     62
     63#: better-plugin-compatibility-control.php:248
     64msgid "No max PHP compatibility info for this plugin available."
     65msgstr "Keine max. PHP-Kompatibilitäts-Infos zu diesem Plugin verfügbar."
     66
     67#: better-plugin-compatibility-control.php:244
     68msgid "No PHP compatibility info for this plugin available."
     69msgstr "Keine PHP-Kompatibilitäts-Infos zu diesem Plugin verfügbar."
     70
     71#: better-plugin-compatibility-control.php:237
     72msgid "No readme.txt file for this plugin found. Contact the plugin author!"
    4073msgstr ""
    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!"
    4276
    4377#. Author of the plugin
     
    4579msgstr "Oliver Schl&ouml;be"
    4680
    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
     83msgid "This plugin has been tested successfully with your current PHP version."
     84msgstr ""
     85"Dieses Plugin wurde erfolgreich mit Ihrer aktuellen Version von PHP getestet."
    5086
    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
    6289msgid ""
    6390"This plugin has been tested successfully with your current version of "
     
    6794"getestet."
    6895
    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
     98msgid "Warning: This plugin has not been tested with your current PHP version."
     99msgstr ""
     100"Warnung: Dieses Plugin wurde nicht mit Ihrer aktuellen Version von PHP "
     101"getestet."
    73102
    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
     105msgid ""
     106"Warning: This plugin has not been tested with your current version of "
     107"WordPress."
    81108msgstr ""
    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  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: PACKAGE VERSION\n"
     4"Project-Id-Version: Better Plugin Compatibility Control\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2016-12-27 21:31+0000\n"
     6"POT-Creation-Date: 2025-07-21 09:39+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1313"Content-Type: text/plain; charset=UTF-8\n"
    1414"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"
    5618
    5719#. Description of the plugin
     
    6123msgstr ""
    6224
     25#. Name of the plugin
     26msgid "Better Plugin Compatibility Control"
     27msgstr ""
     28
     29#: better-plugin-compatibility-control.php:281
     30msgid "Better Plugin Compatibility Control requires at least WordPress 2.9!"
     31msgstr ""
     32
    6333#. URI of the plugin
    64 msgid ""
    65 "https://www.schloebe.de/wordpress/better-plugin-compatibility-control-plugin/"
     34msgid "https://wordpress.org/plugins/better-plugin-compatibility-control/"
     35msgstr ""
     36
     37#. Author URI of the plugin
     38msgid "https://www.schloebe.de/"
     39msgstr ""
     40
     41#: better-plugin-compatibility-control.php:229
     42#: better-plugin-compatibility-control.php:233
     43msgid "N/A"
     44msgstr ""
     45
     46#: better-plugin-compatibility-control.php:237
     47msgid "No compatibility data found"
     48msgstr ""
     49
     50#: better-plugin-compatibility-control.php:229
     51#: better-plugin-compatibility-control.php:233
     52msgid "No compatibility info for this plugin available."
     53msgstr ""
     54
     55#: better-plugin-compatibility-control.php:248
     56msgid "No max PHP compatibility info for this plugin available."
     57msgstr ""
     58
     59#: better-plugin-compatibility-control.php:244
     60msgid "No PHP compatibility info for this plugin available."
     61msgstr ""
     62
     63#: better-plugin-compatibility-control.php:237
     64msgid "No readme.txt file for this plugin found. Contact the plugin author!"
    6665msgstr ""
    6766
     
    7069msgstr ""
    7170
    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
     73msgid "This plugin has been tested successfully with your current PHP version."
    7474msgstr ""
     75
     76#: better-plugin-compatibility-control.php:228
     77#: better-plugin-compatibility-control.php:232
     78msgid ""
     79"This plugin has been tested successfully with your current version of "
     80"WordPress."
     81msgstr ""
     82
     83#: better-plugin-compatibility-control.php:243
     84#: better-plugin-compatibility-control.php:247
     85msgid "Warning: This plugin has not been tested with your current PHP version."
     86msgstr ""
     87
     88#: better-plugin-compatibility-control.php:228
     89#: better-plugin-compatibility-control.php:232
     90msgid ""
     91"Warning: This plugin has not been tested with your current version of "
     92"WordPress."
     93msgstr ""
  • better-plugin-compatibility-control/trunk/readme.txt

    r3271911 r3331386  
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    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.
     11Adds 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.
    1212
    1313== Description ==
    1414
    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.
    1616
    1717**Included languages:**
     
    5656== Changelog ==
    5757
     58= 6.8.0 =
     59* Added PHP compatibility info
     60
    5861= 6.6.0 =
    5962* compatibility bump
Note: See TracChangeset for help on using the changeset viewer.