Changeset 3342051
- Timestamp:
- 08/09/2025 03:25:09 PM (7 months ago)
- Location:
- patron-button-and-widgets-by-codebard/trunk
- Files:
-
- 4 edited
-
index.php (modified) (2 diffs)
-
plugin/includes/default_internal_vars.php (modified) (1 diff)
-
plugin/plugin.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
patron-button-and-widgets-by-codebard/trunk/index.php
r3047500 r3342051 4 4 Plugin URI: https://wordpress.org/plugins/patron-button-and-widgets-by-codebard/ 5 5 Description: Patreon Patron Buttons, Widgets and Patreon Functions 6 Version: 2.2. 16 Version: 2.2.4 7 7 Author: CodeBard 8 8 Author URI: https://codebard.com … … 516 516 517 517 add_action( 'wp_ajax_'.$this->internal['prefix'].'dismiss_admin_notice', array( &$this, 'dismiss_admin_notice' ),10,1 ); 518 519 add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ) ); 520 521 add_filter( 'plugins_api', array( &$this, 'injectInfo' ), 90, 3 ); 522 518 523 519 if($this->internal['requested_action']!='') 524 520 { -
patron-button-and-widgets-by-codebard/trunk/plugin/includes/default_internal_vars.php
r3047500 r3342051 11 11 'plugin_id' => 'patron-button-and-widgets-by-codebard', 12 12 'prefix' => 'cb_p6_', 13 'version' => '2.2. 1',13 'version' => '2.2.4', 14 14 'plugin_name' => 'CodeBard\'s Patron Button and Widgets for Patreon', 15 15 -
patron-button-and-widgets-by-codebard/trunk/plugin/plugin.php
r3047500 r3342051 32 32 33 33 add_menu_page( $this->lang['admin_menu_label'], $this->lang['admin_menu_label'], 'administrator', 'settings_'.$this->internal['id'], array(&$this,'do_settings_pages'), $this->internal['plugin_url'].'images/admin_menu_icon.png', 86 ); 34 add_submenu_page( null, 'Patreon Button, Widgets and Plugin Admin Message', 'Admin message', 'manage_options', $this->internal['id'] . 'admin_message', array( &$this, 'admin_message_page' ) );35 add_submenu_page( null, 'Installing Patreon WordPress', 'Installing Patreon WordPress', 'manage_options', $this->internal['id'] . '_install_pw', array( &$this, 'install_pw' ) );34 add_submenu_page( '', 'Patreon Button, Widgets and Plugin Admin Message', 'Admin message', 'manage_options', $this->internal['id'] . 'admin_message', array( &$this, 'admin_message_page' ) ); 35 add_submenu_page( '', 'Installing Patreon WordPress', 'Installing Patreon WordPress', 'manage_options', $this->internal['id'] . '_install_pw', array( &$this, 'install_pw' ) ); 36 36 37 37 } 38 38 public function admin_init_p() { 39 40 // Updates are important - Add update nag if update exist 41 add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ),99 ); 42 add_filter( 'pre_set_site_transient_update_plugins', array(&$this, 'check_for_update' ),99 ); 39 40 add_action( 'admin_enqueue_scripts', array(&$this, 'enqueue_admin_scripts')); 41 43 42 add_action( 'admin_enqueue_scripts', array(&$this, 'load_pointers' ) ); 44 43 add_filter( $this->internal['prefix'].'admin_pointers-dashboard', array( &$this, 'widgets_pointer' ) ); … … 1496 1495 } 1497 1496 1498 if ( $this->opt['setup_is_being_done'] ) {1497 if ( isset( $this->opt['setup_is_being_done'] ) AND $this->opt['setup_is_being_done'] ) { 1499 1498 return; 1500 1499 } -
patron-button-and-widgets-by-codebard/trunk/readme.txt
r3051227 r3342051 7 7 License: GPL 8 8 Requires at least: 4.0 9 Tested up to: 6. 4.310 Stable Tag: 2.2. 19 Tested up to: 6.8.2 10 Stable Tag: 2.2.4 11 11 12 12 Add Patreon buttons to your content and sidebars. Upgrade to Patron Plugin Pro for patron-only posts and powerful features. … … 63 63 == Upgrade Notice == 64 64 65 = 2.2.4 = 66 67 * Removed unused updater code 68 69 = 2.2.3 = 70 71 * Fixed a PHP deprecation warning 72 73 = 2.2.2 = 74 75 * Fixed a PHP warning 76 65 77 = 2.2.1 = 66 78 … … 209 221 == Changelog == 210 222 223 = 2.2.4 = 224 225 * Removed unused updater code 226 227 = 2.2.3 = 228 229 * Fixed a PHP deprecation warning 230 231 = 2.2.2 = 232 233 * Fixed a PHP warning 234 211 235 = 2.2.1 = 212 236
Note: See TracChangeset
for help on using the changeset viewer.