Plugin Directory

Changeset 2879540


Ignore:
Timestamp:
03/14/2023 05:41:25 AM (3 years ago)
Author:
wpoperations
Message:
  • Compatibility check with WordPress 6.1.1
  • Compatibility check with Contact Form 7 5.7.4
Location:
wpop-accf/trunk
Files:
2 edited

Legend:

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

    r2737791 r2879540  
    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.0
     6Tested up to: 6.1.1
    77Requires PHP: 5.6
    8 Stable tag: 1.1.8
     8Stable tag: 1.1.9
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646
    4747== Changelog ==
     48= 1.1.9 =
     49* Compatibility check with WordPress 6.1.1
     50* Compatibility check with Contact Form 7 5.7.4
     51
    4852= 1.1.8 =
    4953* Compatibility check with WordPress 6.0
  • wpop-accf/trunk/wpop-accf.php

    r2737791 r2879540  
    66 * Plugin URI: https://wordpress.org/plugins/wpop-accf
    77 * Author URI: https://wpoperation.com
    8  * Version: 1.1.8
    9  * Tested up to: 6.0
     8 * Version: 1.1.9
     9 * Tested up to: 6.1.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
    2930        public function init(){
    3031            load_plugin_textdomain('wpop-accf', false, dirname(plugin_basename(__FILE__)) . '/languages/');
    3132        }
     33
    3234        public function accf7_plugin_dependencies() {
    3335            define("ACCF7_PATH", plugin_dir_path(__FILE__));
     
    4749            }
    4850        }
     51
    4952        //Registering of backend js and css
    5053        public function accf7_register_backend_assets() {
     
    5962        }
    6063
    61         function accf7_pro_plugin_action_links( $links ) {
     64        public function accf7_pro_plugin_action_links( $links ) {
    6265         
    6366            $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>';
     
    6568        }
    6669    }
     70   
    6771    new ACCF7_Integration();
    6872}
Note: See TracChangeset for help on using the changeset viewer.