Plugin Directory

Changeset 3461362


Ignore:
Timestamp:
02/14/2026 01:52:19 PM (7 weeks ago)
Author:
Alphawolf
Message:

Version 6.9.0 update:

  • compatibility bump
  • code improvements
Location:
better-plugin-compatibility-control/trunk
Files:
1 added
2 edited

Legend:

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

    r3331386 r3461362  
    99/*
    1010Plugin Name: Better Plugin Compatibility Control
    11 Version: 6.8.0
     11Version: 6.9.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-2025 Oliver Schlöbe (email : scripts@schloebe.de)
     20Copyright 2008-2026 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.8.0");
     41define("BPCC_VERSION", "6.9.0");
    4242
    4343/**
     
    9999    * @author scripts@schloebe.de
    100100    */
    101     function __construct() {
     101    public function __construct() {
    102102        if ( !BPCCISWP29 ) {
    103103            add_action('admin_notices', array(&$this, 'wpVersionFailed'));
     
    119119    * @author scripts@schloebe.de
    120120    */
    121     function bpcc_init() {
     121    public function bpcc_init() {
    122122        global $pagenow;
    123123        if ( !function_exists("add_action") ) return;
     
    147147     * @author scripts@schloebe.de
    148148     */
    149     function bpcc_css_admin_header() {
     149    public function bpcc_css_admin_header() {
    150150        echo '
    151151<style type="text/css">
     
    189189    * @author scripts@schloebe.de
    190190    */
    191     function bpcc_pluginversioninfo( $links, $file ) {
     191    public function bpcc_pluginversioninfo( $links, $file ) {
    192192        $_wpversion = str_replace($this->localeInfo["decimal_point"], ".", floatval($GLOBALS['wp_version'])) . '';
    193193        $_phpversion = PHP_VERSION;
     
    265265    * @author scripts@schloebe.de
    266266    */
    267     function bpcc_load_textdomain() {
     267    public function bpcc_load_textdomain() {
    268268        load_plugin_textdomain('better-plugin-compatibility-control', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
    269269    }
     
    278278    * @author scripts@schloebe.de
    279279    */
    280     function wpVersionFailed() {
     280    public function wpVersionFailed() {
    281281        echo "<div id='wpversionfailedmessage' class='error fade'><p>" . __('Better Plugin Compatibility Control requires at least WordPress 2.9!', 'better-plugin-compatibility-control') . "</p></div>";
    282282    }
  • better-plugin-compatibility-control/trunk/readme.txt

    r3331386 r3461362  
    44Tags: admin, management, version, control, compatibility
    55Requires at least: 2.9
    6 Tested up to: 6.8.99
     6Tested up to: 6.9.99
    77Stable tag: trunk
    88License: GPLv2 or later
     
    5656== Changelog ==
    5757
     58= 6.9.0 =
     59* compatibility bump
     60* code improvements
     61
    5862= 6.8.0 =
    5963* Added PHP compatibility info
Note: See TracChangeset for help on using the changeset viewer.