PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / 6.0.2
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI v6.0.2
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / convertkit / convertkit.php

convertkit.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/convertkit/convertkit.php

174 lines 4.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: AutomatorWP - ConvertKit
4 * Plugin URI: https://automatorwp.com/add-ons/convertkit/
5 * Description: Connect AutomatorWP with ConvertKit.
6 * Version: 1.0.0
7 * Author: AutomatorWP
8 * Author URI: https://automatorwp.com/
9 * Text Domain: automatorwp-convertkit
10 * Domain Path: /languages/
11 * Requires at least: 4.4
12 * Tested up to: 6.4
13 * License: GNU AGPL v3.0 (http://www.gnu.org/licenses/agpl.txt)
14 *
15 * @package AutomatorWP\ConvertKit
16 * @author AutomatorWP
17 * @copyright Copyright (c) AutomatorWP
18 */
19
20 final class AutomatorWP_Integration_ConvertKit {
21
22 /**
23 * @var AutomatorWP_Integration_ConvertKit $instance The one true AutomatorWP_Integration_ConvertKit
24 * @since 1.0.0
25 */
26 private static $instance;
27
28 /**
29 * Get active instance
30 *
31 * @access public
32 * @since 1.0.0
33 * @return AutomatorWP_Integration_ConvertKit self::$instance The one true AutomatorWP_Integration_ConvertKit
34 */
35 public static function instance() {
36 if( !self::$instance ) {
37 self::$instance = new AutomatorWP_Integration_ConvertKit();
38
39 if( ! self::$instance->pro_installed() ) {
40
41 self::$instance->constants();
42 self::$instance->includes();
43
44 }
45
46 self::$instance->hooks();
47 }
48
49 return self::$instance;
50 }
51
52 /**
53 * Setup plugin constants
54 *
55 * @access private
56 * @since 1.0.0
57 * @return void
58 */
59 private function constants() {
60 // Plugin version
61 define( 'AUTOMATORWP_CONVERTKIT_VER', '1.0.0' );
62
63 // Plugin file
64 define( 'AUTOMATORWP_CONVERTKIT_FILE', __FILE__ );
65
66 // Plugin path
67 define( 'AUTOMATORWP_CONVERTKIT_DIR', plugin_dir_path( __FILE__ ) );
68
69 // Plugin URL
70 define( 'AUTOMATORWP_CONVERTKIT_URL', plugin_dir_url( __FILE__ ) );
71 }
72
73
74 /**
75 * Include plugin files
76 *
77 * @access private
78 * @since 1.0.0
79 * @return void
80 */
81 private function includes() {
82
83 if( $this->meets_requirements() ) {
84
85 // Includes
86 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/admin.php';
87 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/functions.php';
88 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/ajax-functions.php';
89 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/scripts.php';
90
91 // Actions
92 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/actions/add-user-form.php';
93 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/actions/add-user-sequence.php';
94 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/actions/add-user-tag.php';
95 require_once AUTOMATORWP_CONVERTKIT_DIR . 'includes/actions/remove-user-tag.php';
96
97 }
98 }
99
100 /**
101 * Setup plugin hooks
102 *
103 * @access private
104 * @since 1.0.0
105 * @return void
106 */
107 private function hooks() {
108
109 add_action( 'automatorwp_init', array( $this, 'register_integration' ) );
110
111 }
112
113
114 /**
115 * Registers this integration
116 *
117 * @since 1.0.0
118 */
119 function register_integration() {
120
121 automatorwp_register_integration( 'convertkit', array(
122 'label' => 'ConvertKit',
123 'icon' => AUTOMATORWP_CONVERTKIT_URL . 'assets/convertkit.svg',
124 ) );
125
126 }
127
128 /**
129 * Check if there are all plugin requirements
130 *
131 * @since 1.0.0
132 *
133 * @return bool True if installation meets all requirements
134 */
135 private function meets_requirements() {
136
137 if ( ! class_exists( 'AutomatorWP' ) ) {
138 return false;
139 }
140
141 return true;
142
143 }
144
145 /**
146 * Check if the pro version of this integration is installed
147 *
148 * @since 1.0.0
149 *
150 * @return bool True if pro version installed
151 */
152 private function pro_installed() {
153
154 if ( ! class_exists( 'AutomatorWP_ConvertKit' ) ) {
155 return false;
156 }
157
158 return true;
159
160 }
161
162 }
163
164 /**
165 * The main function responsible for returning the one true AutomatorWP_Integration_ConvertKit instance to functions everywhere
166 *
167 * @since 1.0.0
168 * @return \AutomatorWP_Integration_ConvertKit The one true AutomatorWP_Integration_ConvertKit
169 */
170 function AutomatorWP_Integration_ConvertKit() {
171 return AutomatorWP_Integration_ConvertKit::instance();
172 }
173 add_action( 'automatorwp_pre_init', 'AutomatorWP_Integration_ConvertKit' );
174