PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.4.1
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.4.1
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 +21 -17 2.2.82.4.1 View file →
@@ -140,10 +140,9 @@
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['output'] = new ConvertKit_Output();
146 145
147 146 /**
148 147 * Initialize integration classes for the frontend web site.
149 148 *
@@ -160,23 +159,28 @@
160 159 * @since 1.9.6
161 160 */
162 161 private function initialize_global() {
163 162
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();
163 + $this->classes['ajax'] = new ConvertKit_AJAX();
164 + $this->classes['blocks_convertkit_broadcasts'] = new ConvertKit_Block_Broadcasts();
165 + $this->classes['blocks_convertkit_content'] = new ConvertKit_Block_Content();
166 + $this->classes['blocks_convertkit_formtrigger'] = new ConvertKit_Block_Form_Trigger();
167 + $this->classes['blocks_convertkit_form'] = new ConvertKit_Block_Form();
168 + $this->classes['blocks_convertkit_product'] = new ConvertKit_Block_Product();
169 + $this->classes['block_formatter_form_link'] = new ConvertKit_Block_Formatter_Form_Link();
170 + $this->classes['block_formatter_product_link'] = new ConvertKit_Block_Formatter_Product_Link();
171 + $this->classes['pre_publish_action_broadcast_export'] = new ConvertKit_Pre_Publish_Action_Broadcast_Export();
172 + $this->classes['broadcasts_exporter'] = new ConvertKit_Broadcasts_Exporter();
173 + $this->classes['broadcasts_importer'] = new ConvertKit_Broadcasts_Importer();
174 + $this->classes['elementor'] = new ConvertKit_Elementor();
175 + $this->classes['gutenberg'] = new ConvertKit_Gutenberg();
176 + $this->classes['media_library'] = new ConvertKit_Media_Library();
177 + $this->classes['output_restrict_content'] = new ConvertKit_Output_Restrict_Content();
178 + $this->classes['review_request'] = new ConvertKit_Review_Request( 'ConvertKit', 'convertkit', CONVERTKIT_PLUGIN_PATH );
179 + $this->classes['preview_output'] = new ConvertKit_Preview_Output();
180 + $this->classes['setup'] = new ConvertKit_Setup();
181 + $this->classes['shortcodes'] = new ConvertKit_Shortcodes();
182 + $this->classes['widgets'] = new ConvertKit_Widgets();
179 183
180 184 // Run the setup's update process on WordPress' init hook.
181 185 // Doing this sooner may result in errors with WordPress functions that are not yet
182 186 // available to the update routine.