Changeset 3461362
- Timestamp:
- 02/14/2026 01:52:19 PM (7 weeks ago)
- Location:
- better-plugin-compatibility-control/trunk
- Files:
-
- 1 added
- 2 edited
-
better-plugin-compatibility-control.php (modified) (9 diffs)
-
languages/better-plugin-compatibility-control-de_DE.l10n.php (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-plugin-compatibility-control/trunk/better-plugin-compatibility-control.php
r3331386 r3461362 9 9 /* 10 10 Plugin Name: Better Plugin Compatibility Control 11 Version: 6. 8.011 Version: 6.9.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 5Oliver Schlöbe (email : scripts@schloebe.de)20 Copyright 2008-2026 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. 8.0");41 define("BPCC_VERSION", "6.9.0"); 42 42 43 43 /** … … 99 99 * @author scripts@schloebe.de 100 100 */ 101 function __construct() {101 public function __construct() { 102 102 if ( !BPCCISWP29 ) { 103 103 add_action('admin_notices', array(&$this, 'wpVersionFailed')); … … 119 119 * @author scripts@schloebe.de 120 120 */ 121 function bpcc_init() {121 public function bpcc_init() { 122 122 global $pagenow; 123 123 if ( !function_exists("add_action") ) return; … … 147 147 * @author scripts@schloebe.de 148 148 */ 149 function bpcc_css_admin_header() {149 public function bpcc_css_admin_header() { 150 150 echo ' 151 151 <style type="text/css"> … … 189 189 * @author scripts@schloebe.de 190 190 */ 191 function bpcc_pluginversioninfo( $links, $file ) {191 public function bpcc_pluginversioninfo( $links, $file ) { 192 192 $_wpversion = str_replace($this->localeInfo["decimal_point"], ".", floatval($GLOBALS['wp_version'])) . ''; 193 193 $_phpversion = PHP_VERSION; … … 265 265 * @author scripts@schloebe.de 266 266 */ 267 function bpcc_load_textdomain() {267 public function bpcc_load_textdomain() { 268 268 load_plugin_textdomain('better-plugin-compatibility-control', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/'); 269 269 } … … 278 278 * @author scripts@schloebe.de 279 279 */ 280 function wpVersionFailed() {280 public function wpVersionFailed() { 281 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>"; 282 282 } -
better-plugin-compatibility-control/trunk/readme.txt
r3331386 r3461362 4 4 Tags: admin, management, version, control, compatibility 5 5 Requires at least: 2.9 6 Tested up to: 6. 8.996 Tested up to: 6.9.99 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 56 56 == Changelog == 57 57 58 = 6.9.0 = 59 * compatibility bump 60 * code improvements 61 58 62 = 6.8.0 = 59 63 * Added PHP compatibility info
Note: See TracChangeset
for help on using the changeset viewer.