| @@ -7,10 +7,10 @@ | ||
| 7 | 7 | * |
| 8 | 8 | * @wordpress-plugin |
| 9 | 9 | * Plugin Name: ConvertKit |
| 10 | 10 | * Plugin URI: https://convertkit.com/ |
| 11 | - * Description: Quickly and easily integrate ConvertKit forms into your site. | |
| 12 | - * Version: 2.2.9 | |
| 11 | + * Description: Display ConvertKit email subscription forms, landing pages, products, broadcasts and more. | |
| 12 | + * Version: 2.4.7 | |
| 13 | 13 | * Author: ConvertKit |
| 14 | 14 | * Author URI: https://convertkit.com/ |
| 15 | 15 | * Text Domain: convertkit |
| 16 | 16 | */ |
| @@ -24,9 +24,9 @@ | ||
| 24 | 24 | define( 'CONVERTKIT_PLUGIN_NAME', 'ConvertKit' ); // Used for user-agent in API class. |
| 25 | 25 | define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) ); |
| 26 | 26 | define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); |
| 27 | 27 | define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ ); |
| 28 | -define( 'CONVERTKIT_PLUGIN_VERSION', '2.2.9' ); | |
| 28 | +define( 'CONVERTKIT_PLUGIN_VERSION', '2.4.7' ); | |
| 29 | 29 | |
| 30 | 30 | // Load shared classes, if they have not been included by another ConvertKit Plugin. |
| 31 | 31 | if ( ! class_exists( 'ConvertKit_API' ) ) { |
| 32 | 32 | require_once CONVERTKIT_PLUGIN_PATH . '/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-api.php'; |
| @@ -45,9 +45,11 @@ | ||
| 45 | 45 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/cron-functions.php'; |
| 46 | 46 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/functions.php'; |
| 47 | 47 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-wp-convertkit.php'; |
| 48 | 48 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-ajax.php'; |
| 49 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-broadcasts-exporter.php'; | |
| 49 | 50 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-broadcasts-importer.php'; |
| 51 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-cache-plugins.php'; | |
| 50 | 52 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-cron.php'; |
| 51 | 53 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-gutenberg.php'; |
| 52 | 54 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-media-library.php'; |
| 53 | 55 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-output.php'; |
| @@ -77,8 +79,10 @@ | ||
| 77 | 79 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/blocks/class-convertkit-block-product.php'; |
| 78 | 80 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/block-formatters/class-convertkit-block-formatter.php'; |
| 79 | 81 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/block-formatters/class-convertkit-block-formatter-form-link.php'; |
| 80 | 82 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/block-formatters/class-convertkit-block-formatter-product-link.php'; |
| 83 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/pre-publish-actions/class-convertkit-pre-publish-action.php'; | |
| 84 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/pre-publish-actions/class-convertkit-pre-publish-action-broadcast-export.php'; | |
| 81 | 85 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/widgets/class-ck-widget-form.php'; |
| 82 | 86 | |
| 83 | 87 | // Contact Form 7 Integration. |
| 84 | 88 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/contactform7/class-convertkit-contactform7.php'; |
| @@ -86,8 +90,12 @@ | ||
| 86 | 90 | |
| 87 | 91 | // Elementor Integration. |
| 88 | 92 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/elementor/class-convertkit-elementor.php'; |
| 89 | 93 | |
| 94 | +// Forminator Integration. | |
| 95 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/forminator/class-convertkit-forminator.php'; | |
| 96 | +require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/forminator/class-convertkit-forminator-settings.php'; | |
| 97 | + | |
| 90 | 98 | // WishList Member Integration. |
| 91 | 99 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/wishlist/class-convertkit-wishlist.php'; |
| 92 | 100 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/wishlist/class-convertkit-wishlist-settings.php'; |
| 93 | 101 | |
| @@ -114,8 +122,11 @@ | ||
| 114 | 122 | require_once CONVERTKIT_PLUGIN_PATH . '/admin/setup-wizard/class-convertkit-admin-setup-wizard-plugin.php'; |
| 115 | 123 | |
| 116 | 124 | // Contact Form 7 Integration. |
| 117 | 125 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/contactform7/class-convertkit-contactform7-admin-settings.php'; |
| 126 | + | |
| 127 | + // Forminator Integration. | |
| 128 | + require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/forminator/class-convertkit-forminator-admin-settings.php'; | |
| 118 | 129 | |
| 119 | 130 | // WishList Member Integration. |
| 120 | 131 | require_once CONVERTKIT_PLUGIN_PATH . '/includes/integrations/wishlist/class-convertkit-wishlist-admin-settings.php'; |
| 121 | 132 | |