Changeset 2976266
- Timestamp:
- 10/09/2023 08:56:09 AM (2 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
r2879540 r2976266 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. 1.16 Tested up to: 6.0 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 98 Stable tag: 1.1.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 47 47 == Changelog == 48 48 = 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 51 50 52 51 = 1.1.8 = -
wpop-accf/trunk/wpop-accf.php
r2879540 r2976266 7 7 * Author URI: https://wpoperation.com 8 8 * Version: 1.1.9 9 * Tested up to: 6. 1.19 * Tested up to: 6.3.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 30 29 public function init(){ 31 30 load_plugin_textdomain('wpop-accf', false, dirname(plugin_basename(__FILE__)) . '/languages/'); 32 31 } 33 34 32 public function accf7_plugin_dependencies() { 35 33 define("ACCF7_PATH", plugin_dir_path(__FILE__)); … … 49 47 } 50 48 } 51 52 49 //Registering of backend js and css 53 50 public function accf7_register_backend_assets() { … … 62 59 } 63 60 64 publicfunction accf7_pro_plugin_action_links( $links ) {61 function accf7_pro_plugin_action_links( $links ) { 65 62 66 63 $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>'; … … 68 65 } 69 66 } 70 71 67 new ACCF7_Integration(); 72 68 }
Note: See TracChangeset
for help on using the changeset viewer.