Changeset 2879540
- Timestamp:
- 03/14/2023 05:41:25 AM (3 years ago)
- Location:
- wpop-accf/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wpop-accf.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpop-accf/trunk/readme.txt
r2737791 r2879540 4 4 Tags: 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 5 5 Requires at least: 4.5.0 6 Tested up to: 6. 06 Tested up to: 6.1.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 88 Stable tag: 1.1.9 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 47 47 == Changelog == 48 = 1.1.9 = 49 * Compatibility check with WordPress 6.1.1 50 * Compatibility check with Contact Form 7 5.7.4 51 48 52 = 1.1.8 = 49 53 * Compatibility check with WordPress 6.0 -
wpop-accf/trunk/wpop-accf.php
r2737791 r2879540 6 6 * Plugin URI: https://wordpress.org/plugins/wpop-accf 7 7 * Author URI: https://wpoperation.com 8 * Version: 1.1. 89 * Tested up to: 6. 08 * Version: 1.1.9 9 * Tested up to: 6.1.1 10 10 * Text Domain: wpop-accf 11 11 * Domain Path: /languages/ … … 15 15 exit; 16 16 if (!class_exists('ACCF7_Integration')) { 17 class ACCF7_Integration 18 { 17 class ACCF7_Integration{ 18 19 19 public function __construct(){ 20 20 … … 27 27 add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this,'accf7_pro_plugin_action_links') ); 28 28 } 29 29 30 public function init(){ 30 31 load_plugin_textdomain('wpop-accf', false, dirname(plugin_basename(__FILE__)) . '/languages/'); 31 32 } 33 32 34 public function accf7_plugin_dependencies() { 33 35 define("ACCF7_PATH", plugin_dir_path(__FILE__)); … … 47 49 } 48 50 } 51 49 52 //Registering of backend js and css 50 53 public function accf7_register_backend_assets() { … … 59 62 } 60 63 61 function accf7_pro_plugin_action_links( $links ) {64 public function accf7_pro_plugin_action_links( $links ) { 62 65 63 66 $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>'; … … 65 68 } 66 69 } 70 67 71 new ACCF7_Integration(); 68 72 }
Note: See TracChangeset
for help on using the changeset viewer.