PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.5.2
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.5.2
3.4.3 3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 All 196 releases
← All changes | includes/class-wp-convertkit.php +22 -17 2.2.42.5.2 View file →
@@ -140,10 +140,10 @@
140 140 if ( is_admin() ) {
141 141 return;
142 142 }
143 143
144 - $this->classes['output'] = new ConvertKit_Output();
145 - $this->classes['output_restrict_content'] = new ConvertKit_Output_Restrict_Content();
144 + $this->classes['cache_plugins'] = new ConvertKit_Cache_Plugins();
145 + $this->classes['output'] = new ConvertKit_Output();
146 146
147 147 /**
148 148 * Initialize integration classes for the frontend web site.
149 149 *
@@ -160,23 +160,28 @@
160 160 * @since 1.9.6
161 161 */
162 162 private function initialize_global() {
163 163
164 - $this->classes['ajax'] = new ConvertKit_AJAX();
165 - $this->classes['blocks_convertkit_broadcasts'] = new ConvertKit_Block_Broadcasts();
166 - $this->classes['blocks_convertkit_content'] = new ConvertKit_Block_Content();
167 - $this->classes['blocks_convertkit_formtrigger'] = new ConvertKit_Block_Form_Trigger();
168 - $this->classes['blocks_convertkit_form'] = new ConvertKit_Block_Form();
169 - $this->classes['blocks_convertkit_product'] = new ConvertKit_Block_Product();
170 - $this->classes['block_formatter_form_link'] = new ConvertKit_Block_Formatter_Form_Link();
171 - $this->classes['block_formatter_product_link'] = new ConvertKit_Block_Formatter_Product_Link();
172 - $this->classes['elementor'] = new ConvertKit_Elementor();
173 - $this->classes['gutenberg'] = new ConvertKit_Gutenberg();
174 - $this->classes['review_request'] = new ConvertKit_Review_Request( 'ConvertKit', 'convertkit', CONVERTKIT_PLUGIN_PATH );
175 - $this->classes['preview_output'] = new ConvertKit_Preview_Output();
176 - $this->classes['setup'] = new ConvertKit_Setup();
177 - $this->classes['shortcodes'] = new ConvertKit_Shortcodes();
178 - $this->classes['widgets'] = new ConvertKit_Widgets();
164 + $this->classes['ajax'] = new ConvertKit_AJAX();
165 + $this->classes['blocks_convertkit_broadcasts'] = new ConvertKit_Block_Broadcasts();
166 + $this->classes['blocks_convertkit_content'] = new ConvertKit_Block_Content();
167 + $this->classes['blocks_convertkit_formtrigger'] = new ConvertKit_Block_Form_Trigger();
168 + $this->classes['blocks_convertkit_form'] = new ConvertKit_Block_Form();
169 + $this->classes['blocks_convertkit_product'] = new ConvertKit_Block_Product();
170 + $this->classes['block_formatter_form_link'] = new ConvertKit_Block_Formatter_Form_Link();
171 + $this->classes['block_formatter_product_link'] = new ConvertKit_Block_Formatter_Product_Link();
172 + $this->classes['pre_publish_action_broadcast_export'] = new ConvertKit_Pre_Publish_Action_Broadcast_Export();
173 + $this->classes['broadcasts_exporter'] = new ConvertKit_Broadcasts_Exporter();
174 + $this->classes['broadcasts_importer'] = new ConvertKit_Broadcasts_Importer();
175 + $this->classes['elementor'] = new ConvertKit_Elementor();
176 + $this->classes['gutenberg'] = new ConvertKit_Gutenberg();
177 + $this->classes['media_library'] = new ConvertKit_Media_Library();
178 + $this->classes['output_restrict_content'] = new ConvertKit_Output_Restrict_Content();
179 + $this->classes['review_request'] = new ConvertKit_Review_Request( 'ConvertKit', 'convertkit', CONVERTKIT_PLUGIN_PATH );
180 + $this->classes['preview_output'] = new ConvertKit_Preview_Output();
181 + $this->classes['setup'] = new ConvertKit_Setup();
182 + $this->classes['shortcodes'] = new ConvertKit_Shortcodes();
183 + $this->classes['widgets'] = new ConvertKit_Widgets();
179 184
180 185 // Run the setup's update process on WordPress' init hook.
181 186 // Doing this sooner may result in errors with WordPress functions that are not yet
182 187 // available to the update routine.