Plugin Directory

Changeset 2976266


Ignore:
Timestamp:
10/09/2023 08:56:09 AM (2 years ago)
Author:
wpoperations
Message:

Compatibility check with WordPress 6.3.1

Location:
wpop-accf/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpop-accf/trunk/readme.txt

    r2879540 r2976266  
    44Tags: active campaign, contact form 7 to active campaign, cf7 active campaign, subscription list, wpoperation, cf7 integration, mailing list, cf7 mailing list,ActiveCampaign,Contact Form 7
    55Requires at least: 4.5.0
    6 Tested up to: 6.1.1
     6Tested up to: 6.0
    77Requires PHP: 5.6
    8 Stable tag: 1.1.9
     8Stable tag: 1.1.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848= 1.1.9 =
    49 * Compatibility check with WordPress 6.1.1
    50 * Compatibility check with Contact Form 7 5.7.4
     49* Compatibility check with WordPress 6.3.1
    5150
    5251= 1.1.8 =
  • wpop-accf/trunk/wpop-accf.php

    r2879540 r2976266  
    77 * Author URI: https://wpoperation.com
    88 * Version: 1.1.9
    9  * Tested up to: 6.1.1
     9 * Tested up to: 6.3.1
    1010 * Text Domain: wpop-accf
    1111 * Domain Path: /languages/
     
    1515    exit;
    1616if (!class_exists('ACCF7_Integration')) {
    17     class ACCF7_Integration{
    18 
     17    class ACCF7_Integration
     18    {
    1919        public function __construct(){
    2020       
     
    2727            add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this,'accf7_pro_plugin_action_links') );
    2828        }
    29 
    3029        public function init(){
    3130            load_plugin_textdomain('wpop-accf', false, dirname(plugin_basename(__FILE__)) . '/languages/');
    3231        }
    33 
    3432        public function accf7_plugin_dependencies() {
    3533            define("ACCF7_PATH", plugin_dir_path(__FILE__));
     
    4947            }
    5048        }
    51 
    5249        //Registering of backend js and css
    5350        public function accf7_register_backend_assets() {
     
    6259        }
    6360
    64         public function accf7_pro_plugin_action_links( $links ) {
     61        function accf7_pro_plugin_action_links( $links ) {
    6562         
    6663            $links[] = '<a href="https://wpoperation.com/plugins/active-campaign-contact-form-7-pro/" target="_blank" style="color:#05c305; font-weight:bold;">'.esc_html__('Go Pro','wpop-accf').'</a>';
     
    6865        }
    6966    }
    70    
    7167    new ACCF7_Integration();
    7268}
Note: See TracChangeset for help on using the changeset viewer.