Astra Starter Sites - Version 1.3.11

Version Description

Download this release

Release Info

Developer vrundakansara
Plugin Icon Astra Starter Sites
Version 1.3.11
Comparing to
See all releases

Code changes from version 1.3.10 to 1.3.11

astra-sites.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Astra Starter Sites
4
  * Plugin URI: http://www.wpastra.com/pro/
5
  * Description: Import free sites build with Astra theme.
6
- * Version: 1.3.10
7
  * Author: Brainstorm Force
8
  * Author URI: http://www.brainstormforce.com
9
  * Text Domain: astra-sites
@@ -19,7 +19,7 @@ if ( ! defined( 'ASTRA_SITES_NAME' ) ) {
19
  }
20
 
21
  if ( ! defined( 'ASTRA_SITES_VER' ) ) {
22
- define( 'ASTRA_SITES_VER', '1.3.10' );
23
  }
24
 
25
  if ( ! defined( 'ASTRA_SITES_FILE' ) ) {
3
  * Plugin Name: Astra Starter Sites
4
  * Plugin URI: http://www.wpastra.com/pro/
5
  * Description: Import free sites build with Astra theme.
6
+ * Version: 1.3.11
7
  * Author: Brainstorm Force
8
  * Author URI: http://www.brainstormforce.com
9
  * Text Domain: astra-sites
19
  }
20
 
21
  if ( ! defined( 'ASTRA_SITES_VER' ) ) {
22
+ define( 'ASTRA_SITES_VER', '1.3.11' );
23
  }
24
 
25
  if ( ! defined( 'ASTRA_SITES_FILE' ) ) {
inc/classes/class-astra-sites-page.php CHANGED
@@ -1,434 +1,434 @@
1
- <?php
2
- /**
3
- * Astra Sites Page
4
- *
5
- * @since 1.0.6
6
- * @package Astra Sites
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- if ( ! class_exists( 'Astra_Sites_Page' ) ) {
14
-
15
- /**
16
- * Astra Admin Settings
17
- */
18
- class Astra_Sites_Page {
19
-
20
- /**
21
- * View all actions
22
- *
23
- * @since 1.0.6
24
- * @var array $view_actions
25
- */
26
- public $view_actions = array();
27
-
28
- /**
29
- * Member Variable
30
- *
31
- * @var instance
32
- */
33
- private static $instance;
34
-
35
- /**
36
- * Initiator
37
- *
38
- * @since 1.3.0
39
- */
40
- public static function get_instance() {
41
- if ( ! isset( self::$instance ) ) {
42
- self::$instance = new self;
43
- }
44
- return self::$instance;
45
- }
46
-
47
- /**
48
- * Constructor
49
- *
50
- * @since 1.3.0
51
- */
52
- public function __construct() {
53
-
54
- if ( ! is_admin() ) {
55
- return;
56
- }
57
-
58
- add_action( 'after_setup_theme', array( $this, 'init_admin_settings' ), 99 );
59
- add_action( 'admin_init', array( $this, 'save_page_builder' ) );
60
- add_action( 'admin_notices', array( $this, 'getting_started' ) );
61
- }
62
-
63
- /**
64
- * Admin notice
65
- *
66
- * @since 1.3.5
67
- *
68
- * @return void
69
- */
70
- function getting_started() {
71
- if ( 'plugins' !== get_current_screen()->base ) {
72
- return;
73
- }
74
-
75
- $processed = get_user_meta( get_current_user_id(), '_astra_sites_gettings_started', true );
76
- $product_name = Astra_Sites_White_Label::get_instance()->page_title( 'Astra' );
77
-
78
- if ( $processed ) {
79
- return;
80
- }
81
-
82
- ?>
83
- <div class="notice notice-info is-dismissible astra-sites-getting-started-notice">
84
- <?php /* translators: %1$s is the admin page URL, %2$s is product name. */ ?>
85
- <p><?php printf( __( 'Thank you for choosing %1$s! Check the library of <a class="astra-sites-getting-started-btn" href="%2$s">ready starter sites here »</a>', 'astra-sites' ), $product_name, admin_url( 'themes.php?page=astra-sites' ) ); ?></p>
86
- </div>
87
- <?php
88
- }
89
-
90
- /**
91
- * Save Page Builder
92
- *
93
- * @return void
94
- */
95
- function save_page_builder() {
96
-
97
- // Only admins can save settings.
98
- if ( ! current_user_can( 'manage_options' ) ) {
99
- return;
100
- }
101
-
102
- // Make sure we have a valid nonce.
103
- if ( isset( $_REQUEST['astra-sites-page-builder'] ) && wp_verify_nonce( $_REQUEST['astra-sites-page-builder'], 'astra-sites-welcome-screen' ) ) {
104
-
105
- // Stored Settings.
106
- $stored_data = $this->get_settings();
107
-
108
- // New settings.
109
- $new_data = array(
110
- 'page_builder' => ( isset( $_REQUEST['page_builder'] ) ) ? sanitize_key( $_REQUEST['page_builder'] ) : '',
111
- );
112
-
113
- // Merge settings.
114
- $data = wp_parse_args( $new_data, $stored_data );
115
-
116
- // Update settings.
117
- update_option( 'astra_sites_settings', $data );
118
-
119
- wp_redirect( admin_url( '/themes.php?page=astra-sites' ) );
120
- }
121
- }
122
-
123
- /**
124
- * Get single setting value
125
- *
126
- * @param string $key Setting key.
127
- * @param mixed $defaults Setting value.
128
- * @return mixed Stored setting value.
129
- */
130
- function get_setting( $key = '', $defaults = '' ) {
131
-
132
- $settings = $this->get_settings();
133
-
134
- if ( empty( $settings ) ) {
135
- return $defaults;
136
- }
137
-
138
- if ( array_key_exists( $key, $settings ) ) {
139
- return $settings[ $key ];
140
- }
141
-
142
- return $defaults;
143
- }
144
-
145
- /**
146
- * Get Settings
147
- *
148
- * @return array Stored settings.
149
- */
150
- function get_settings() {
151
-
152
- $defaults = array(
153
- 'page_builder' => '',
154
- );
155
-
156
- $stored_data = get_option( 'astra_sites_settings', $defaults );
157
-
158
- return wp_parse_args( $stored_data, $defaults );
159
- }
160
-
161
- /**
162
- * Admin settings init
163
- */
164
- public function init_admin_settings() {
165
- add_action( 'admin_menu', array( $this, 'add_admin_menu' ), 100 );
166
- add_action( 'admin_notices', array( $this, 'notices' ) );
167
- add_action( 'astra_sites_menu_general_action', array( $this, 'general_page' ) );
168
- }
169
-
170
- /**
171
- * Admin notice
172
- *
173
- * @since 1.2.8
174
- */
175
- public function notices() {
176
-
177
- if ( 'appearance_page_astra-sites' !== get_current_screen()->id ) {
178
- return;
179
- }
180
-
181
- if ( ! class_exists( 'XMLReader' ) ) {
182
- ?>
183
- <div class="notice astra-sites-xml-notice notice-error">
184
- <p><b><?php _e( 'Required XMLReader PHP extension is missing on your server!', 'astra-sites' ); ?></b></p>
185
- <?php /* translators: %s is the white label name. */ ?>
186
- <p><?php printf( __( '%s import requires XMLReader extension to be installed. Please contact your web hosting provider and ask them to install and activate the XMLReader PHP extension.', 'astra-sites' ), ASTRA_SITES_NAME ); ?></p>
187
- </div>
188
- <?php
189
- }
190
- }
191
-
192
- /**
193
- * Init Nav Menu
194
- *
195
- * @param mixed $action Action name.
196
- * @since 1.0.6
197
- */
198
- public function init_nav_menu( $action = '' ) {
199
-
200
- if ( '' !== $action ) {
201
- $this->render_tab_menu( $action );
202
- }
203
- }
204
-
205
- /**
206
- * Render tab menu
207
- *
208
- * @param mixed $action Action name.
209
- * @since 1.0.6
210
- */
211
- public function render_tab_menu( $action = '' ) {
212
- ?>
213
- <div id="astra-sites-menu-page">
214
- <?php $this->render( $action ); ?>
215
- </div>
216
- <?php
217
- }
218
-
219
- /**
220
- * View actions
221
- *
222
- * @since 1.0.11
223
- */
224
- public function get_view_actions() {
225
-
226
- if ( empty( $this->view_actions ) ) {
227
-
228
- $this->view_actions = apply_filters(
229
- 'astra_sites_menu_item',
230
- array()
231
- );
232
- }
233
-
234
- return $this->view_actions;
235
- }
236
-
237
- /**
238
- * Prints HTML content for tabs
239
- *
240
- * @param mixed $action Action name.
241
- * @since 1.0.6
242
- */
243
- public function render( $action ) {
244
-
245
- // Settings update message.
246
- if ( isset( $_REQUEST['message'] ) && ( 'saved' === $_REQUEST['message'] || 'saved_ext' === $_REQUEST['message'] ) ) {
247
- ?>
248
- <span id="message" class="notice notice-success is-dismissive"><p> <?php esc_html_e( 'Settings saved successfully.', 'astra-sites' ); ?> </p></span>
249
- <?php
250
- }
251
-
252
- $default_page_builder = $this->get_setting( 'page_builder' );
253
-
254
- if ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) {
255
-
256
- $plugins = get_option( 'active_plugins', array() );
257
- $page_builders = array();
258
- if ( $plugins ) {
259
- foreach ( $plugins as $key => $plugin_init ) {
260
- if ( false !== strpos( $plugin_init, 'elementor' ) ) {
261
- $page_builders[] = 'elementor';
262
- }
263
- if ( false !== strpos( $plugin_init, 'beaver-builder' ) ) {
264
- $page_builders[] = 'beaver-builder';
265
- }
266
- if ( false !== strpos( $plugin_init, 'brizy' ) ) {
267
- $page_builders[] = 'brizy';
268
- }
269
- }
270
- }
271
- $page_builders = array_unique( $page_builders );
272
- $page_builders[] = 'gutenberg';
273
- $page_builders = implode( ',', $page_builders );
274
- ?>
275
- <div class="astra-sites-welcome" data-plugins="<?php echo esc_attr( $page_builders ); ?>">
276
- <div class="inner">
277
- <form id="astra-sites-welcome-form" enctype="multipart/form-data" method="post">
278
- <h1><?php _e( 'Select Page Builder', 'astra-sites' ); ?></h1>
279
- <p><?php _e( 'Astra offers starter sites that can be imported in one click. These templates are available in few different page builders. Please choose your preferred page builder from the list below.', 'astra-sites' ); ?></p>
280
- <div class="fields">
281
- <ul class="page-builders">
282
- <li>
283
- <label>
284
- <input type="radio" name="page_builder" value="gutenberg">
285
- <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/gutenberg.jpg' ); ?>" />
286
- <div class="title"><?php _e( 'Gutenberg', 'astra-sites' ); ?></div>
287
- </label>
288
- </li>
289
- <li>
290
- <label>
291
- <input type="radio" name="page_builder" value="elementor">
292
- <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/elementor.jpg' ); ?>" />
293
- <div class="title"><?php _e( 'Elementor', 'astra-sites' ); ?></div>
294
- </label>
295
- </li>
296
- <li>
297
- <label>
298
- <input type="radio" name="page_builder" value="beaver-builder">
299
- <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/beaver-builder.png' ); ?>" />
300
- <div class="title"><?php _e( 'Beaver Builder', 'astra-sites' ); ?></div>
301
- </li>
302
- <li>
303
- <label>
304
- <input type="radio" name="page_builder" value="brizy">
305
- <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/brizy.jpg' ); ?>" />
306
- <div class="title"><?php _e( 'Brizy', 'astra-sites' ); ?></div>
307
- </label>
308
- </li>
309
- </ul>
310
- <div class="astra-sites-page-builder-notice" style="display: none;">
311
- <p class="description"><?php _e( 'Please select your favorite page builder to continue..', 'astra-sites' ); ?></p>
312
- </div>
313
- <?php submit_button( __( 'Next', 'astra-sites' ), 'primary button-hero disabled' ); ?>
314
- </div>
315
-
316
- <input type="hidden" name="message" value="saved" />
317
- <?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
318
- </form>
319
- </div>
320
- </div>
321
- <?php } else { ?>
322
- <?php
323
- $page_title = apply_filters( 'astra_sites_page_title', __( 'Astra Starter Sites - Your Library of 100+ Ready Templates!', 'astra-sites' ) );
324
- ?>
325
- <div class="nav-tab-wrapper">
326
- <h1 class='astra-sites-title'> <?php echo esc_html( $page_title ); ?> </h1>
327
- <form id="astra-sites-welcome-form-inline" enctype="multipart/form-data" method="post">
328
- <div class="fields">
329
- <select name="page_builder" required="required">
330
- <option value="gutenberg" <?php selected( $default_page_builder, 'gutenberg' ); ?>><?php _e( 'Block Editor (Gutenberg)', 'astra-sites' ); ?></option>
331
- <option value="elementor" <?php selected( $default_page_builder, 'elementor' ); ?>><?php _e( 'Elementor', 'astra-sites' ); ?></option>
332
- <option value="beaver-builder" <?php selected( $default_page_builder, 'beaver-builder' ); ?>><?php _e( 'Beaver Builder', 'astra-sites' ); ?></option>
333
- <option value="brizy" <?php selected( $default_page_builder, 'brizy' ); ?>><?php _e( 'Brizy', 'astra-sites' ); ?></option>
334
- </select>
335
- </div>
336
- <input type="hidden" name="message" value="saved" />
337
- <?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
338
- </form>
339
- <?php
340
- $view_actions = $this->get_view_actions();
341
-
342
- foreach ( $view_actions as $slug => $data ) {
343
-
344
- if ( ! $data['show'] ) {
345
- continue;
346
- }
347
-
348
- $url = $this->get_page_url( $slug );
349
-
350
- if ( 'general' === $slug ) {
351
- update_option( 'astra_parent_page_url', $url );
352
- }
353
-
354
- $active = ( $slug === $action ) ? 'nav-tab-active' : '';
355
- ?>
356
- <a class='nav-tab <?php echo esc_attr( $active ); ?>' href='<?php echo esc_url( $url ); ?>'> <?php echo esc_html( $data['label'] ); ?> </a>
357
- <?php } ?>
358
- </div><!-- .nav-tab-wrapper -->
359
- <?php
360
- }
361
- }
362
-
363
- /**
364
- * Get and return page URL
365
- *
366
- * @param string $menu_slug Menu name.
367
- * @since 1.0.6
368
- * @return string page url
369
- */
370
- public function get_page_url( $menu_slug ) {
371
-
372
- $parent_page = 'themes.php';
373
-
374
- if ( strpos( $parent_page, '?' ) !== false ) {
375
- $query_var = '&page=astra-sites';
376
- } else {
377
- $query_var = '?page=astra-sites';
378
- }
379
-
380
- $parent_page_url = admin_url( $parent_page . $query_var );
381
-
382
- $url = $parent_page_url . '&action=' . $menu_slug;
383
-
384
- return esc_url( $url );
385
- }
386
-
387
- /**
388
- * Add main menu
389
- *
390
- * @since 1.0.6
391
- */
392
- public function add_admin_menu() {
393
- $page_title = apply_filters( 'astra_sites_menu_page_title', __( 'Astra Starter Sites', 'astra-sites' ) );
394
-
395
- $page = add_theme_page( $page_title, $page_title, 'manage_options', 'astra-sites', array( $this, 'menu_callback' ) );
396
- }
397
-
398
- /**
399
- * Menu callback
400
- *
401
- * @since 1.0.6
402
- */
403
- public function menu_callback() {
404
-
405
- $current_slug = isset( $_GET['action'] ) ? esc_attr( $_GET['action'] ) : 'general';
406
-
407
- $active_tab = str_replace( '_', '-', $current_slug );
408
- $current_slug = str_replace( '-', '_', $current_slug );
409
-
410
- ?>
411
- <div class="astra-sites-menu-page-wrapper">
412
- <?php $this->init_nav_menu( $active_tab ); ?>
413
- <?php do_action( 'astra_sites_menu_' . esc_attr( $current_slug ) . '_action' ); ?>
414
- </div>
415
- <?php
416
- }
417
-
418
- /**
419
- * Include general page
420
- *
421
- * @since 1.0.6
422
- */
423
- public function general_page() {
424
- $default_page_builder = $this->get_setting( 'page_builder' );
425
- if ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) {
426
- return;
427
- }
428
- require_once ASTRA_SITES_DIR . 'inc/includes/admin-page.php';
429
- }
430
- }
431
-
432
- Astra_Sites_Page::get_instance();
433
-
434
- }// End if.
1
+ <?php
2
+ /**
3
+ * Astra Sites Page
4
+ *
5
+ * @since 1.0.6
6
+ * @package Astra Sites
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ if ( ! class_exists( 'Astra_Sites_Page' ) ) {
14
+
15
+ /**
16
+ * Astra Admin Settings
17
+ */
18
+ class Astra_Sites_Page {
19
+
20
+ /**
21
+ * View all actions
22
+ *
23
+ * @since 1.0.6
24
+ * @var array $view_actions
25
+ */
26
+ public $view_actions = array();
27
+
28
+ /**
29
+ * Member Variable
30
+ *
31
+ * @var instance
32
+ */
33
+ private static $instance;
34
+
35
+ /**
36
+ * Initiator
37
+ *
38
+ * @since 1.3.0
39
+ */
40
+ public static function get_instance() {
41
+ if ( ! isset( self::$instance ) ) {
42
+ self::$instance = new self;
43
+ }
44
+ return self::$instance;
45
+ }
46
+
47
+ /**
48
+ * Constructor
49
+ *
50
+ * @since 1.3.0
51
+ */
52
+ public function __construct() {
53
+
54
+ if ( ! is_admin() ) {
55
+ return;
56
+ }
57
+
58
+ add_action( 'after_setup_theme', array( $this, 'init_admin_settings' ), 99 );
59
+ add_action( 'admin_init', array( $this, 'save_page_builder' ) );
60
+ add_action( 'admin_notices', array( $this, 'getting_started' ) );
61
+ }
62
+
63
+ /**
64
+ * Admin notice
65
+ *
66
+ * @since 1.3.5
67
+ *
68
+ * @return void
69
+ */
70
+ function getting_started() {
71
+ if ( 'plugins' !== get_current_screen()->base ) {
72
+ return;
73
+ }
74
+
75
+ $processed = get_user_meta( get_current_user_id(), '_astra_sites_gettings_started', true );
76
+ $product_name = Astra_Sites_White_Label::get_instance()->page_title( 'Astra' );
77
+
78
+ if ( $processed ) {
79
+ return;
80
+ }
81
+
82
+ ?>
83
+ <div class="notice notice-info is-dismissible astra-sites-getting-started-notice">
84
+ <?php /* translators: %1$s is the admin page URL, %2$s is product name. */ ?>
85
+ <p><?php printf( __( 'Thank you for choosing %1$s! Check the library of <a class="astra-sites-getting-started-btn" href="%2$s">ready starter sites here »</a>', 'astra-sites' ), $product_name, admin_url( 'themes.php?page=astra-sites' ) ); ?></p>
86
+ </div>
87
+ <?php
88
+ }
89
+
90
+ /**
91
+ * Save Page Builder
92
+ *
93
+ * @return void
94
+ */
95
+ function save_page_builder() {
96
+
97
+ // Only admins can save settings.
98
+ if ( ! current_user_can( 'manage_options' ) ) {
99
+ return;
100
+ }
101
+
102
+ // Make sure we have a valid nonce.
103
+ if ( isset( $_REQUEST['astra-sites-page-builder'] ) && wp_verify_nonce( $_REQUEST['astra-sites-page-builder'], 'astra-sites-welcome-screen' ) ) {
104
+
105
+ // Stored Settings.
106
+ $stored_data = $this->get_settings();
107
+
108
+ // New settings.
109
+ $new_data = array(
110
+ 'page_builder' => ( isset( $_REQUEST['page_builder'] ) ) ? sanitize_key( $_REQUEST['page_builder'] ) : '',
111
+ );
112
+
113
+ // Merge settings.
114
+ $data = wp_parse_args( $new_data, $stored_data );
115
+
116
+ // Update settings.
117
+ update_option( 'astra_sites_settings', $data );
118
+
119
+ wp_redirect( admin_url( '/themes.php?page=astra-sites' ) );
120
+ }
121
+ }
122
+
123
+ /**
124
+ * Get single setting value
125
+ *
126
+ * @param string $key Setting key.
127
+ * @param mixed $defaults Setting value.
128
+ * @return mixed Stored setting value.
129
+ */
130
+ function get_setting( $key = '', $defaults = '' ) {
131
+
132
+ $settings = $this->get_settings();
133
+
134
+ if ( empty( $settings ) ) {
135
+ return $defaults;
136
+ }
137
+
138
+ if ( array_key_exists( $key, $settings ) ) {
139
+ return $settings[ $key ];
140
+ }
141
+
142
+ return $defaults;
143
+ }
144
+
145
+ /**
146
+ * Get Settings
147
+ *
148
+ * @return array Stored settings.
149
+ */
150
+ function get_settings() {
151
+
152
+ $defaults = array(
153
+ 'page_builder' => '',
154
+ );
155
+
156
+ $stored_data = get_option( 'astra_sites_settings', $defaults );
157
+
158
+ return wp_parse_args( $stored_data, $defaults );
159
+ }
160
+
161
+ /**
162
+ * Admin settings init
163
+ */
164
+ public function init_admin_settings() {
165
+ add_action( 'admin_menu', array( $this, 'add_admin_menu' ), 100 );
166
+ add_action( 'admin_notices', array( $this, 'notices' ) );
167
+ add_action( 'astra_sites_menu_general_action', array( $this, 'general_page' ) );
168
+ }
169
+
170
+ /**
171
+ * Admin notice
172
+ *
173
+ * @since 1.2.8
174
+ */
175
+ public function notices() {
176
+
177
+ if ( 'appearance_page_astra-sites' !== get_current_screen()->id ) {
178
+ return;
179
+ }
180
+
181
+ if ( ! class_exists( 'XMLReader' ) ) {
182
+ ?>
183
+ <div class="notice astra-sites-xml-notice notice-error">
184
+ <p><b><?php _e( 'Required XMLReader PHP extension is missing on your server!', 'astra-sites' ); ?></b></p>
185
+ <?php /* translators: %s is the white label name. */ ?>
186
+ <p><?php printf( __( '%s import requires XMLReader extension to be installed. Please contact your web hosting provider and ask them to install and activate the XMLReader PHP extension.', 'astra-sites' ), ASTRA_SITES_NAME ); ?></p>
187
+ </div>
188
+ <?php
189
+ }
190
+ }
191
+
192
+ /**
193
+ * Init Nav Menu
194
+ *
195
+ * @param mixed $action Action name.
196
+ * @since 1.0.6
197
+ */
198
+ public function init_nav_menu( $action = '' ) {
199
+
200
+ if ( '' !== $action ) {
201
+ $this->render_tab_menu( $action );
202
+ }
203
+ }
204
+
205
+ /**
206
+ * Render tab menu
207
+ *
208
+ * @param mixed $action Action name.
209
+ * @since 1.0.6
210
+ */
211
+ public function render_tab_menu( $action = '' ) {
212
+ ?>
213
+ <div id="astra-sites-menu-page">
214
+ <?php $this->render( $action ); ?>
215
+ </div>
216
+ <?php
217
+ }
218
+
219
+ /**
220
+ * View actions
221
+ *
222
+ * @since 1.0.11
223
+ */
224
+ public function get_view_actions() {
225
+
226
+ if ( empty( $this->view_actions ) ) {
227
+
228
+ $this->view_actions = apply_filters(
229
+ 'astra_sites_menu_item',
230
+ array()
231
+ );
232
+ }
233
+
234
+ return $this->view_actions;
235
+ }
236
+
237
+ /**
238
+ * Prints HTML content for tabs
239
+ *
240
+ * @param mixed $action Action name.
241
+ * @since 1.0.6
242
+ */
243
+ public function render( $action ) {
244
+
245
+ // Settings update message.
246
+ if ( isset( $_REQUEST['message'] ) && ( 'saved' === $_REQUEST['message'] || 'saved_ext' === $_REQUEST['message'] ) ) {
247
+ ?>
248
+ <span id="message" class="notice notice-success is-dismissive"><p> <?php esc_html_e( 'Settings saved successfully.', 'astra-sites' ); ?> </p></span>
249
+ <?php
250
+ }
251
+
252
+ $default_page_builder = $this->get_setting( 'page_builder' );
253
+
254
+ if ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) {
255
+
256
+ $plugins = get_option( 'active_plugins', array() );
257
+ $page_builders = array();
258
+ if ( $plugins ) {
259
+ foreach ( $plugins as $key => $plugin_init ) {
260
+ if ( false !== strpos( $plugin_init, 'elementor' ) ) {
261
+ $page_builders[] = 'elementor';
262
+ }
263
+ if ( false !== strpos( $plugin_init, 'beaver-builder' ) ) {
264
+ $page_builders[] = 'beaver-builder';
265
+ }
266
+ if ( false !== strpos( $plugin_init, 'brizy' ) ) {
267
+ $page_builders[] = 'brizy';
268
+ }
269
+ }
270
+ }
271
+ $page_builders = array_unique( $page_builders );
272
+ $page_builders[] = 'gutenberg';
273
+ $page_builders = implode( ',', $page_builders );
274
+ ?>
275
+ <div class="astra-sites-welcome" data-plugins="<?php echo esc_attr( $page_builders ); ?>">
276
+ <div class="inner">
277
+ <form id="astra-sites-welcome-form" enctype="multipart/form-data" method="post">
278
+ <h1><?php _e( 'Select Page Builder', 'astra-sites' ); ?></h1>
279
+ <p><?php _e( 'Astra offers starter sites that can be imported in one click. These templates are available in few different page builders. Please choose your preferred page builder from the list below.', 'astra-sites' ); ?></p>
280
+ <div class="fields">
281
+ <ul class="page-builders">
282
+ <li>
283
+ <label>
284
+ <input type="radio" name="page_builder" value="gutenberg">
285
+ <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/gutenberg.jpg' ); ?>" />
286
+ <div class="title"><?php _e( 'Gutenberg', 'astra-sites' ); ?></div>
287
+ </label>
288
+ </li>
289
+ <li>
290
+ <label>
291
+ <input type="radio" name="page_builder" value="elementor">
292
+ <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/elementor.jpg' ); ?>" />
293
+ <div class="title"><?php _e( 'Elementor', 'astra-sites' ); ?></div>
294
+ </label>
295
+ </li>
296
+ <li>
297
+ <label>
298
+ <input type="radio" name="page_builder" value="beaver-builder">
299
+ <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/beaver-builder.png' ); ?>" />
300
+ <div class="title"><?php _e( 'Beaver Builder', 'astra-sites' ); ?></div>
301
+ </li>
302
+ <li>
303
+ <label>
304
+ <input type="radio" name="page_builder" value="brizy">
305
+ <img src="<?php echo esc_url( ASTRA_SITES_URI . 'inc/assets/images/brizy.jpg' ); ?>" />
306
+ <div class="title"><?php _e( 'Brizy', 'astra-sites' ); ?></div>
307
+ </label>
308
+ </li>
309
+ </ul>
310
+ <div class="astra-sites-page-builder-notice" style="display: none;">
311
+ <p class="description"><?php _e( 'Please select your favorite page builder to continue..', 'astra-sites' ); ?></p>
312
+ </div>
313
+ <?php submit_button( __( 'Next', 'astra-sites' ), 'primary button-hero disabled' ); ?>
314
+ </div>
315
+
316
+ <input type="hidden" name="message" value="saved" />
317
+ <?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
318
+ </form>
319
+ </div>
320
+ </div>
321
+ <?php } else { ?>
322
+ <?php
323
+ $page_title = apply_filters( 'astra_sites_page_title', __( 'Astra Starter Sites - Your Library of 100+ Ready Templates!', 'astra-sites' ) );
324
+ ?>
325
+ <div class="nav-tab-wrapper">
326
+ <h1 class='astra-sites-title'> <?php echo esc_html( $page_title ); ?> </h1>
327
+ <form id="astra-sites-welcome-form-inline" enctype="multipart/form-data" method="post">
328
+ <div class="fields">
329
+ <select name="page_builder" required="required">
330
+ <option value="gutenberg" <?php selected( $default_page_builder, 'gutenberg' ); ?>><?php _e( 'Block Editor (Gutenberg)', 'astra-sites' ); ?></option>
331
+ <option value="elementor" <?php selected( $default_page_builder, 'elementor' ); ?>><?php _e( 'Elementor', 'astra-sites' ); ?></option>
332
+ <option value="beaver-builder" <?php selected( $default_page_builder, 'beaver-builder' ); ?>><?php _e( 'Beaver Builder', 'astra-sites' ); ?></option>
333
+ <option value="brizy" <?php selected( $default_page_builder, 'brizy' ); ?>><?php _e( 'Brizy', 'astra-sites' ); ?></option>
334
+ </select>
335
+ </div>
336
+ <input type="hidden" name="message" value="saved" />
337
+ <?php wp_nonce_field( 'astra-sites-welcome-screen', 'astra-sites-page-builder' ); ?>
338
+ </form>
339
+ <?php
340
+ $view_actions = $this->get_view_actions();
341
+
342
+ foreach ( $view_actions as $slug => $data ) {
343
+
344
+ if ( ! $data['show'] ) {
345
+ continue;
346
+ }
347
+
348
+ $url = $this->get_page_url( $slug );
349
+
350
+ if ( 'general' === $slug ) {
351
+ update_option( 'astra_parent_page_url', $url );
352
+ }
353
+
354
+ $active = ( $slug === $action ) ? 'nav-tab-active' : '';
355
+ ?>
356
+ <a class='nav-tab <?php echo esc_attr( $active ); ?>' href='<?php echo esc_url( $url ); ?>'> <?php echo esc_html( $data['label'] ); ?> </a>
357
+ <?php } ?>
358
+ </div><!-- .nav-tab-wrapper -->
359
+ <?php
360
+ }
361
+ }
362
+
363
+ /**
364
+ * Get and return page URL
365
+ *
366
+ * @param string $menu_slug Menu name.
367
+ * @since 1.0.6
368
+ * @return string page url
369
+ */
370
+ public function get_page_url( $menu_slug ) {
371
+
372
+ $parent_page = 'themes.php';
373
+
374
+ if ( strpos( $parent_page, '?' ) !== false ) {
375
+ $query_var = '&page=astra-sites';
376
+ } else {
377
+ $query_var = '?page=astra-sites';
378
+ }
379
+
380
+ $parent_page_url = admin_url( $parent_page . $query_var );
381
+
382
+ $url = $parent_page_url . '&action=' . $menu_slug;
383
+
384
+ return esc_url( $url );
385
+ }
386
+
387
+ /**
388
+ * Add main menu
389
+ *
390
+ * @since 1.0.6
391
+ */
392
+ public function add_admin_menu() {
393
+ $page_title = apply_filters( 'astra_sites_menu_page_title', __( 'Astra Starter Sites', 'astra-sites' ) );
394
+
395
+ $page = add_theme_page( $page_title, $page_title, 'manage_options', 'astra-sites', array( $this, 'menu_callback' ) );
396
+ }
397
+
398
+ /**
399
+ * Menu callback
400
+ *
401
+ * @since 1.0.6
402
+ */
403
+ public function menu_callback() {
404
+
405
+ $current_slug = isset( $_GET['action'] ) ? esc_attr( $_GET['action'] ) : 'general';
406
+
407
+ $active_tab = str_replace( '_', '-', $current_slug );
408
+ $current_slug = str_replace( '-', '_', $current_slug );
409
+
410
+ ?>
411
+ <div class="astra-sites-menu-page-wrapper">
412
+ <?php $this->init_nav_menu( $active_tab ); ?>
413
+ <?php do_action( 'astra_sites_menu_' . esc_attr( $current_slug ) . '_action' ); ?>
414
+ </div>
415
+ <?php
416
+ }
417
+
418
+ /**
419
+ * Include general page
420
+ *
421
+ * @since 1.0.6
422
+ */
423
+ public function general_page() {
424
+ $default_page_builder = $this->get_setting( 'page_builder' );
425
+ if ( empty( $default_page_builder ) || isset( $_GET['change-page-builder'] ) ) {
426
+ return;
427
+ }
428
+ require_once ASTRA_SITES_DIR . 'inc/includes/admin-page.php';
429
+ }
430
+ }
431
+
432
+ Astra_Sites_Page::get_instance();
433
+
434
+ }// End if.
inc/classes/compatibility/class-astra-sites-compatibility.php CHANGED
@@ -1,66 +1,66 @@
1
- <?php
2
- /**
3
- * Astra Sites Compatibility for 3rd party plugins.
4
- *
5
- * @package Astra Sites
6
- * @since 1.0.11
7
- */
8
-
9
- if ( ! class_exists( 'Astra_Sites_Compatibility' ) ) :
10
-
11
- /**
12
- * Astra Sites Compatibility
13
- *
14
- * @since 1.0.11
15
- */
16
- class Astra_Sites_Compatibility {
17
-
18
- /**
19
- * Instance
20
- *
21
- * @access private
22
- * @var object Class object.
23
- * @since 1.0.11
24
- */
25
- private static $instance;
26
-
27
- /**
28
- * Initiator
29
- *
30
- * @since 1.0.11
31
- * @return object initialized object of class.
32
- */
33
- public static function instance() {
34
- if ( ! isset( self::$instance ) ) {
35
- self::$instance = new self;
36
- }
37
- return self::$instance;
38
- }
39
-
40
- /**
41
- * Constructor
42
- *
43
- * @since 1.0.11
44
- */
45
- public function __construct() {
46
-
47
- // Plugin - Astra Pro.
48
- require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/astra-pro/class-astra-sites-compatibility-astra-pro.php';
49
-
50
- // Plugin - Site Origin Widgets.
51
- require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/so-widgets-bundle/class-astra-sites-compatibility-so-widgets.php';
52
-
53
- // Plugin - WooCommerce.
54
- require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/woocommerce/class-astra-sites-compatibility-woocommerce.php';
55
- }
56
-
57
- }
58
-
59
- /**
60
- * Kicking this off by calling 'instance()' method
61
- */
62
- Astra_Sites_Compatibility::instance();
63
-
64
- endif;
65
-
66
-
1
+ <?php
2
+ /**
3
+ * Astra Sites Compatibility for 3rd party plugins.
4
+ *
5
+ * @package Astra Sites
6
+ * @since 1.0.11
7
+ */
8
+
9
+ if ( ! class_exists( 'Astra_Sites_Compatibility' ) ) :
10
+
11
+ /**
12
+ * Astra Sites Compatibility
13
+ *
14
+ * @since 1.0.11
15
+ */
16
+ class Astra_Sites_Compatibility {
17
+
18
+ /**
19
+ * Instance
20
+ *
21
+ * @access private
22
+ * @var object Class object.
23
+ * @since 1.0.11
24
+ */
25
+ private static $instance;
26
+
27
+ /**
28
+ * Initiator
29
+ *
30
+ * @since 1.0.11
31
+ * @return object initialized object of class.
32
+ */
33
+ public static function instance() {
34
+ if ( ! isset( self::$instance ) ) {
35
+ self::$instance = new self;
36
+ }
37
+ return self::$instance;
38
+ }
39
+
40
+ /**
41
+ * Constructor
42
+ *
43
+ * @since 1.0.11
44
+ */
45
+ public function __construct() {
46
+
47
+ // Plugin - Astra Pro.
48
+ require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/astra-pro/class-astra-sites-compatibility-astra-pro.php';
49
+
50
+ // Plugin - Site Origin Widgets.
51
+ require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/so-widgets-bundle/class-astra-sites-compatibility-so-widgets.php';
52
+
53
+ // Plugin - WooCommerce.
54
+ require_once ASTRA_SITES_DIR . 'inc/classes/compatibility/woocommerce/class-astra-sites-compatibility-woocommerce.php';
55
+ }
56
+
57
+ }
58
+
59
+ /**
60
+ * Kicking this off by calling 'instance()' method
61
+ */
62
+ Astra_Sites_Compatibility::instance();
63
+
64
+ endif;
65
+
66
+
inc/importers/batch-processing/class-astra-sites-batch-processing-beaver-builder.php CHANGED
@@ -1,261 +1,261 @@
1
- <?php
2
- /**
3
- * Batch Processing
4
- *
5
- * @package Astra Sites
6
- * @since 1.0.14
7
- */
8
-
9
- if ( ! class_exists( 'Astra_Sites_Batch_Processing_Beaver_Builder' ) ) :
10
-
11
- /**
12
- * Astra_Sites_Batch_Processing_Beaver_Builder
13
- *
14
- * @since 1.0.14
15
- */
16
- class Astra_Sites_Batch_Processing_Beaver_Builder {
17
-
18
- /**
19
- * Instance
20
- *
21
- * @since 1.0.14
22
- * @access private
23
- * @var object Class object.
24
- */
25
- private static $instance;
26
-
27
- /**
28
- * Initiator
29
- *
30
- * @since 1.0.14
31
- * @return object initialized object of class.
32
- */
33
- public static function get_instance() {
34
-
35
- if ( ! isset( self::$instance ) ) {
36
- self::$instance = new self;
37
- }
38
- return self::$instance;
39
- }
40
-
41
- /**
42
- * Constructor
43
- *
44
- * @since 1.0.14
45
- */
46
- public function __construct() {
47
- }
48
-
49
- /**
50
- * Import
51
- *
52
- * @since 1.0.14
53
- * @return void
54
- */
55
- public function import() {
56
-
57
- Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for Beaver Builder ----' );
58
- if ( ! is_callable( 'FLBuilderModel::get_post_types' ) ) {
59
- return;
60
- }
61
-
62
- $post_types = FLBuilderModel::get_post_types( 'post-types' );
63
- if ( empty( $post_types ) && ! is_array( $post_types ) ) {
64
- return;
65
- }
66
-
67
- $post_ids = Astra_Sites_Batch_Processing::get_pages( $post_types );
68
- if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
69
- return;
70
- }
71
-
72
- foreach ( $post_ids as $post_id ) {
73
- $is_bb_post = get_post_meta( $post_id, '_fl_builder_enabled', true );
74
- if ( $is_bb_post ) {
75
- $this->import_single_post( $post_id );
76
- }
77
- }
78
- }
79
-
80
- /**
81
- * Update post meta.
82
- *
83
- * @param integer $post_id Post ID.
84
- * @return void
85
- */
86
- public function import_single_post( $post_id = 0 ) {
87
-
88
- Astra_Sites_Importer_Log::add( 'Post ID: ' . $post_id );
89
- if ( ! empty( $post_id ) ) {
90
-
91
- // Get page builder data.
92
- $data = get_post_meta( $post_id, '_fl_builder_data', true );
93
-
94
- if ( ! empty( $data ) ) {
95
- foreach ( $data as $key => $el ) {
96
-
97
- // Update 'row' images.
98
- if ( 'row' === $el->type ) {
99
- $data[ $key ]->settings = self::update_row( $el->settings );
100
- }
101
-
102
- // Update 'module' images.
103
- if ( 'module' === $el->type ) {
104
- $data[ $key ]->settings = self::update_module( $el->settings );
105
- }
106
-
107
- // Update 'column' images.
108
- if ( 'column' === $el->type ) {
109
- $data[ $key ]->settings = self::update_column( $el->settings );
110
- }
111
- }
112
-
113
- // Update page builder data.
114
- update_post_meta( $post_id, '_fl_builder_data', $data );
115
- update_post_meta( $post_id, '_fl_builder_draft', $data );
116
-
117
- // Clear all cache.
118
- FLBuilderModel::delete_asset_cache_for_all_posts();
119
- }
120
- }
121
-
122
- }
123
-
124
- /**
125
- * Import Module Images.
126
- *
127
- * @param object $settings Module settings object.
128
- * @return object
129
- */
130
- public static function update_module( $settings ) {
131
-
132
- // 1) Set photos.
133
- $settings = self::import_photo( $settings );
134
-
135
- /**
136
- * 2) Set `$settings->data` for Only type 'image-icon'
137
- *
138
- * @todo Remove the condition `'image-icon' === $settings->type` if `$settings->data` is used only for the Image Icon.
139
- */
140
- if (
141
- isset( $settings->data ) &&
142
- isset( $settings->photo ) && ! empty( $settings->photo ) &&
143
- 'image-icon' === $settings->type
144
- ) {
145
- $settings->data = FLBuilderPhoto::get_attachment_data( $settings->photo );
146
- }
147
-
148
- // 3) Set `list item` module images.
149
- if ( isset( $settings->add_list_item ) ) {
150
- foreach ( $settings->add_list_item as $key => $value ) {
151
- $settings->add_list_item[ $key ] = self::import_photo( $value );
152
- }
153
- }
154
-
155
- // 4) Set `list item` module images.
156
- if ( isset( $settings->text ) ) {
157
- $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
158
- if ( $ids_mapping ) {
159
-
160
- // Keep old data in temp.
161
- $updated_data = $settings->text;
162
-
163
- // Update WP form IDs.
164
- foreach ( $ids_mapping as $old_id => $new_id ) {
165
- $updated_data = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $updated_data );
166
- }
167
-
168
- // Update modified data.
169
- $settings->text = $updated_data;
170
- }
171
- }
172
-
173
- return $settings;
174
- }
175
-
176
- /**
177
- * Import Column Images.
178
- *
179
- * @param object $settings Column settings object.
180
- * @return object
181
- */
182
- public static function update_column( $settings ) {
183
-
184
- // 1) Set BG Images.
185
- $settings = self::import_bg_image( $settings );
186
-
187
- return $settings;
188
- }
189
-
190
- /**
191
- * Import Row Images.
192
- *
193
- * @param object $settings Row settings object.
194
- * @return object
195
- */
196
- public static function update_row( $settings ) {
197
-
198
- // 1) Set BG Images.
199
- $settings = self::import_bg_image( $settings );
200
-
201
- return $settings;
202
- }
203
-
204
- /**
205
- * Helper: Import BG Images.
206
- *
207
- * @param object $settings Row settings object.
208
- * @return object
209
- */
210
- public static function import_bg_image( $settings ) {
211
-
212
- if (
213
- ( ! empty( $settings->bg_image ) && ! empty( $settings->bg_image_src ) )
214
- ) {
215
- $image = array(
216
- 'url' => $settings->bg_image_src,
217
- 'id' => $settings->bg_image,
218
- );
219
-
220
- $downloaded_image = Astra_Sites_Image_Importer::get_instance()->import( $image );
221
-
222
- $settings->bg_image_src = $downloaded_image['url'];
223
- $settings->bg_image = $downloaded_image['id'];
224
- }
225
-
226
- return $settings;
227
- }
228
-
229
- /**
230
- * Helper: Import Photo.
231
- *
232
- * @param object $settings Row settings object.
233
- * @return object
234
- */
235
- public static function import_photo( $settings ) {
236
-
237
- if ( ! empty( $settings->photo ) && ! empty( $settings->photo_src ) ) {
238
-
239
- $image = array(
240
- 'url' => $settings->photo_src,
241
- 'id' => $settings->photo,
242
- );
243
-
244
- $downloaded_image = Astra_Sites_Image_Importer::get_instance()->import( $image );
245
-
246
- $settings->photo_src = $downloaded_image['url'];
247
- $settings->photo = $downloaded_image['id'];
248
- }
249
-
250
- return $settings;
251
- }
252
-
253
-
254
- }
255
-
256
- /**
257
- * Kicking this off by calling 'get_instance()' method
258
- */
259
- Astra_Sites_Batch_Processing_Beaver_Builder::get_instance();
260
-
261
- endif;
1
+ <?php
2
+ /**
3
+ * Batch Processing
4
+ *
5
+ * @package Astra Sites
6
+ * @since 1.0.14
7
+ */
8
+
9
+ if ( ! class_exists( 'Astra_Sites_Batch_Processing_Beaver_Builder' ) ) :
10
+
11
+ /**
12
+ * Astra_Sites_Batch_Processing_Beaver_Builder
13
+ *
14
+ * @since 1.0.14
15
+ */
16
+ class Astra_Sites_Batch_Processing_Beaver_Builder {
17
+
18
+ /**
19
+ * Instance
20
+ *
21
+ * @since 1.0.14
22
+ * @access private
23
+ * @var object Class object.
24
+ */
25
+ private static $instance;
26
+
27
+ /**
28
+ * Initiator
29
+ *
30
+ * @since 1.0.14
31
+ * @return object initialized object of class.
32
+ */
33
+ public static function get_instance() {
34
+
35
+ if ( ! isset( self::$instance ) ) {
36
+ self::$instance = new self;
37
+ }
38
+ return self::$instance;
39
+ }
40
+
41
+ /**
42
+ * Constructor
43
+ *
44
+ * @since 1.0.14
45
+ */
46
+ public function __construct() {
47
+ }
48
+
49
+ /**
50
+ * Import
51
+ *
52
+ * @since 1.0.14
53
+ * @return void
54
+ */
55
+ public function import() {
56
+
57
+ Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for Beaver Builder ----' );
58
+ if ( ! is_callable( 'FLBuilderModel::get_post_types' ) ) {
59
+ return;
60
+ }
61
+
62
+ $post_types = FLBuilderModel::get_post_types( 'post-types' );
63
+ if ( empty( $post_types ) && ! is_array( $post_types ) ) {
64
+ return;
65
+ }
66
+
67
+ $post_ids = Astra_Sites_Batch_Processing::get_pages( $post_types );
68
+ if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
69
+ return;
70
+ }
71
+
72
+ foreach ( $post_ids as $post_id ) {
73
+ $is_bb_post = get_post_meta( $post_id, '_fl_builder_enabled', true );
74
+ if ( $is_bb_post ) {
75
+ $this->import_single_post( $post_id );
76
+ }
77
+ }
78
+ }
79
+
80
+ /**
81
+ * Update post meta.
82
+ *
83
+ * @param integer $post_id Post ID.
84
+ * @return void
85
+ */
86
+ public function import_single_post( $post_id = 0 ) {
87
+
88
+ Astra_Sites_Importer_Log::add( 'Post ID: ' . $post_id );
89
+ if ( ! empty( $post_id ) ) {
90
+
91
+ // Get page builder data.
92
+ $data = get_post_meta( $post_id, '_fl_builder_data', true );
93
+
94
+ if ( ! empty( $data ) ) {
95
+ foreach ( $data as $key => $el ) {
96
+
97
+ // Update 'row' images.
98
+ if ( 'row' === $el->type ) {
99
+ $data[ $key ]->settings = self::update_row( $el->settings );
100
+ }
101
+
102
+ // Update 'module' images.
103
+ if ( 'module' === $el->type ) {
104
+ $data[ $key ]->settings = self::update_module( $el->settings );
105
+ }
106
+
107
+ // Update 'column' images.
108
+ if ( 'column' === $el->type ) {
109
+ $data[ $key ]->settings = self::update_column( $el->settings );
110
+ }
111
+ }
112
+
113
+ // Update page builder data.
114
+ update_post_meta( $post_id, '_fl_builder_data', $data );
115
+ update_post_meta( $post_id, '_fl_builder_draft', $data );
116
+
117
+ // Clear all cache.
118
+ FLBuilderModel::delete_asset_cache_for_all_posts();
119
+ }
120
+ }
121
+
122
+ }
123
+
124
+ /**
125
+ * Import Module Images.
126
+ *
127
+ * @param object $settings Module settings object.
128
+ * @return object
129
+ */
130
+ public static function update_module( $settings ) {
131
+
132
+ // 1) Set photos.
133
+ $settings = self::import_photo( $settings );
134
+
135
+ /**
136
+ * 2) Set `$settings->data` for Only type 'image-icon'
137
+ *
138
+ * @todo Remove the condition `'image-icon' === $settings->type` if `$settings->data` is used only for the Image Icon.
139
+ */
140
+ if (
141
+ isset( $settings->data ) &&
142
+ isset( $settings->photo ) && ! empty( $settings->photo ) &&
143
+ 'image-icon' === $settings->type
144
+ ) {
145
+ $settings->data = FLBuilderPhoto::get_attachment_data( $settings->photo );
146
+ }
147
+
148
+ // 3) Set `list item` module images.
149
+ if ( isset( $settings->add_list_item ) ) {
150
+ foreach ( $settings->add_list_item as $key => $value ) {
151
+ $settings->add_list_item[ $key ] = self::import_photo( $value );
152
+ }
153
+ }
154
+
155
+ // 4) Set `list item` module images.
156
+ if ( isset( $settings->text ) ) {
157
+ $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
158
+ if ( $ids_mapping ) {
159
+
160
+ // Keep old data in temp.
161
+ $updated_data = $settings->text;
162
+
163
+ // Update WP form IDs.
164
+ foreach ( $ids_mapping as $old_id => $new_id ) {
165
+ $updated_data = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $updated_data );
166
+ }
167
+
168
+ // Update modified data.
169
+ $settings->text = $updated_data;
170
+ }
171
+ }
172
+
173
+ return $settings;
174
+ }
175
+
176
+ /**
177
+ * Import Column Images.
178
+ *
179
+ * @param object $settings Column settings object.
180
+ * @return object
181
+ */
182
+ public static function update_column( $settings ) {
183
+
184
+ // 1) Set BG Images.
185
+ $settings = self::import_bg_image( $settings );
186
+
187
+ return $settings;
188
+ }
189
+
190
+ /**
191
+ * Import Row Images.
192
+ *
193
+ * @param object $settings Row settings object.
194
+ * @return object
195
+ */
196
+ public static function update_row( $settings ) {
197
+
198
+ // 1) Set BG Images.
199
+ $settings = self::import_bg_image( $settings );
200
+
201
+ return $settings;
202
+ }
203
+
204
+ /**
205
+ * Helper: Import BG Images.
206
+ *
207
+ * @param object $settings Row settings object.
208
+ * @return object
209
+ */
210
+ public static function import_bg_image( $settings ) {
211
+
212
+ if (
213
+ ( ! empty( $settings->bg_image ) && ! empty( $settings->bg_image_src ) )
214
+ ) {
215
+ $image = array(
216
+ 'url' => $settings->bg_image_src,
217
+ 'id' => $settings->bg_image,
218
+ );
219
+
220
+ $downloaded_image = Astra_Sites_Image_Importer::get_instance()->import( $image );
221
+
222
+ $settings->bg_image_src = $downloaded_image['url'];
223
+ $settings->bg_image = $downloaded_image['id'];
224
+ }
225
+
226
+ return $settings;
227
+ }
228
+
229
+ /**
230
+ * Helper: Import Photo.
231
+ *
232
+ * @param object $settings Row settings object.
233
+ * @return object
234
+ */
235
+ public static function import_photo( $settings ) {
236
+
237
+ if ( ! empty( $settings->photo ) && ! empty( $settings->photo_src ) ) {
238
+
239
+ $image = array(
240
+ 'url' => $settings->photo_src,
241
+ 'id' => $settings->photo,
242
+ );
243
+
244
+ $downloaded_image = Astra_Sites_Image_Importer::get_instance()->import( $image );
245
+
246
+ $settings->photo_src = $downloaded_image['url'];
247
+ $settings->photo = $downloaded_image['id'];
248
+ }
249
+
250
+ return $settings;
251
+ }
252
+
253
+
254
+ }
255
+
256
+ /**
257
+ * Kicking this off by calling 'get_instance()' method
258
+ */
259
+ Astra_Sites_Batch_Processing_Beaver_Builder::get_instance();
260
+
261
+ endif;
inc/importers/batch-processing/class-astra-sites-batch-processing-brizy.php CHANGED
@@ -1,125 +1,125 @@
1
- <?php
2
- /**
3
- * Batch Processing
4
- *
5
- * @package Astra Sites
6
- * @since 1.2.14
7
- */
8
-
9
- if ( ! class_exists( 'Astra_Sites_Batch_Processing_Brizy' ) ) :
10
-
11
- /**
12
- * Astra Sites Batch Processing Brizy
13
- *
14
- * @since 1.2.14
15
- */
16
- class Astra_Sites_Batch_Processing_Brizy {
17
-
18
- /**
19
- * Instance
20
- *
21
- * @since 1.2.14
22
- * @access private
23
- * @var object Class object.
24
- */
25
- private static $instance;
26
-
27
- /**
28
- * Initiator
29
- *
30
- * @since 1.2.14
31
- * @return object initialized object of class.
32
- */
33
- public static function get_instance() {
34
-
35
- if ( ! isset( self::$instance ) ) {
36
- self::$instance = new self;
37
- }
38
- return self::$instance;
39
- }
40
-
41
- /**
42
- * Constructor
43
- *
44
- * @since 1.2.14
45
- */
46
- public function __construct() {}
47
-
48
- /**
49
- * Import
50
- *
51
- * @since 1.2.14
52
- * @return void
53
- */
54
- public function import() {
55
-
56
- Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for "Brizy" ----' );
57
- if ( ! is_callable( 'Brizy_Editor_Storage_Common::instance' ) ) {
58
- return;
59
- }
60
-
61
- $post_types = Brizy_Editor_Storage_Common::instance()->get( 'post-types' );
62
- if ( empty( $post_types ) && ! is_array( $post_types ) ) {
63
- return;
64
- }
65
-
66
- $post_ids = Astra_Sites_Batch_Processing::get_pages( $post_types );
67
- if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
68
- return;
69
- }
70
-
71
- foreach ( $post_ids as $post_id ) {
72
- $is_brizy_post = get_post_meta( $post_id, 'brizy_post_uid', true );
73
- if ( $is_brizy_post ) {
74
- $this->import_single_post( $post_id );
75
- }
76
- }
77
- }
78
-
79
- /**
80
- * Update post meta.
81
- *
82
- * @param integer $post_id Post ID.
83
- * @return void
84
- */
85
- public function import_single_post( $post_id = 0 ) {
86
-
87
- $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
88
-
89
- // Empty mapping? Then return.
90
- if ( empty( $ids_mapping ) ) {
91
- return;
92
- }
93
-
94
- $json_value = null;
95
-
96
- $post = Brizy_Editor_Post::get( (int) $post_id );
97
- $data = $post->storage()->get( Brizy_Editor_Post::BRIZY_POST, false );
98
-
99
- // Decode current data.
100
- $json_value = base64_decode( $data['editor_data'] );
101
-
102
- // Update WPForm IDs.
103
- foreach ( $ids_mapping as $old_id => $new_id ) {
104
- $json_value = str_replace( '[wpforms id=\"' . $old_id, '[wpforms id=\"' . $new_id, $json_value );
105
- }
106
-
107
- // Encode modified data.
108
- $data['editor_data'] = base64_encode( $json_value );
109
-
110
- $post->set_editor_data( $json_value );
111
-
112
- $post->storage()->set( Brizy_Editor_Post::BRIZY_POST, $data );
113
-
114
- $post->compile_page();
115
- $post->save();
116
- }
117
-
118
- }
119
-
120
- /**
121
- * Kicking this off by calling 'get_instance()' method
122
- */
123
- Astra_Sites_Batch_Processing_Brizy::get_instance();
124
-
125
- endif;
1
+ <?php
2
+ /**
3
+ * Batch Processing
4
+ *
5
+ * @package Astra Sites
6
+ * @since 1.2.14
7
+ */
8
+
9
+ if ( ! class_exists( 'Astra_Sites_Batch_Processing_Brizy' ) ) :
10
+
11
+ /**
12
+ * Astra Sites Batch Processing Brizy
13
+ *
14
+ * @since 1.2.14
15
+ */
16
+ class Astra_Sites_Batch_Processing_Brizy {
17
+
18
+ /**
19
+ * Instance
20
+ *
21
+ * @since 1.2.14
22
+ * @access private
23
+ * @var object Class object.
24
+ */
25
+ private static $instance;
26
+
27
+ /**
28
+ * Initiator
29
+ *
30
+ * @since 1.2.14
31
+ * @return object initialized object of class.
32
+ */
33
+ public static function get_instance() {
34
+
35
+ if ( ! isset( self::$instance ) ) {
36
+ self::$instance = new self;
37
+ }
38
+ return self::$instance;
39
+ }
40
+
41
+ /**
42
+ * Constructor
43
+ *
44
+ * @since 1.2.14
45
+ */
46
+ public function __construct() {}
47
+
48
+ /**
49
+ * Import
50
+ *
51
+ * @since 1.2.14
52
+ * @return void
53
+ */
54
+ public function import() {
55
+
56
+ Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for "Brizy" ----' );
57
+ if ( ! is_callable( 'Brizy_Editor_Storage_Common::instance' ) ) {
58
+ return;
59
+ }
60
+
61
+ $post_types = Brizy_Editor_Storage_Common::instance()->get( 'post-types' );
62
+ if ( empty( $post_types ) && ! is_array( $post_types ) ) {
63
+ return;
64
+ }
65
+
66
+ $post_ids = Astra_Sites_Batch_Processing::get_pages( $post_types );
67
+ if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
68
+ return;
69
+ }
70
+
71
+ foreach ( $post_ids as $post_id ) {
72
+ $is_brizy_post = get_post_meta( $post_id, 'brizy_post_uid', true );
73
+ if ( $is_brizy_post ) {
74
+ $this->import_single_post( $post_id );
75
+ }
76
+ }
77
+ }
78
+
79
+ /**
80
+ * Update post meta.
81
+ *
82
+ * @param integer $post_id Post ID.
83
+ * @return void
84
+ */
85
+ public function import_single_post( $post_id = 0 ) {
86
+
87
+ $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
88
+
89
+ // Empty mapping? Then return.
90
+ if ( empty( $ids_mapping ) ) {
91
+ return;
92
+ }
93
+
94
+ $json_value = null;
95
+
96
+ $post = Brizy_Editor_Post::get( (int) $post_id );
97
+ $data = $post->storage()->get( Brizy_Editor_Post::BRIZY_POST, false );
98
+
99
+ // Decode current data.
100
+ $json_value = base64_decode( $data['editor_data'] );
101
+
102
+ // Update WPForm IDs.
103
+ foreach ( $ids_mapping as $old_id => $new_id ) {
104
+ $json_value = str_replace( '[wpforms id=\"' . $old_id, '[wpforms id=\"' . $new_id, $json_value );
105
+ }
106
+
107
+ // Encode modified data.
108
+ $data['editor_data'] = base64_encode( $json_value );
109
+
110
+ $post->set_editor_data( $json_value );
111
+
112
+ $post->storage()->set( Brizy_Editor_Post::BRIZY_POST, $data );
113
+
114
+ $post->compile_page();
115
+ $post->save();
116
+ }
117
+
118
+ }
119
+
120
+ /**
121
+ * Kicking this off by calling 'get_instance()' method
122
+ */
123
+ Astra_Sites_Batch_Processing_Brizy::get_instance();
124
+
125
+ endif;
inc/importers/batch-processing/class-astra-sites-batch-processing-elementor.php CHANGED
@@ -1,109 +1,109 @@
1
- <?php
2
- /**
3
- * Elementor Importer
4
- *
5
- * @package Astra Sites
6
- */
7
-
8
- namespace Elementor\TemplateLibrary;
9
-
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- exit; // Exit if accessed directly.
12
- }
13
-
14
- // If plugin - 'Elementor' not exist then return.
15
- if ( ! class_exists( '\Elementor\Plugin' ) ) {
16
- return;
17
- }
18
-
19
- use Elementor\Core\Base\Document;
20
- use Elementor\DB;
21
- use Elementor\Core\Settings\Page\Manager as PageSettingsManager;
22
- use Elementor\Core\Settings\Manager as SettingsManager;
23
- use Elementor\Core\Settings\Page\Model;
24
- use Elementor\Editor;
25
- use Elementor\Plugin;
26
- use Elementor\Settings;
27
- use Elementor\Utils;
28
-
29
- /**
30
- * Elementor template library local source.
31
- *
32
- * Elementor template library local source handler class is responsible for
33
- * handling local Elementor templates saved by the user locally on his site.
34
- *
35
- * @since 1.2.13 Added compatibility for Elemetnor v2.5.0
36
- * @since 1.0.0
37
- */
38
- class Astra_Sites_Batch_Processing_Elementor extends Source_Local {
39
-
40
- /**
41
- * Import
42
- *
43
- * @since 1.0.14
44
- * @return void
45
- */
46
- public function import() {
47
-
48
- $post_types = \Astra_Sites_Batch_Processing::get_post_types_supporting( 'elementor' );
49
- if ( empty( $post_types ) && ! is_array( $post_types ) ) {
50
- return;
51
- }
52
-
53
- $post_ids = \Astra_Sites_Batch_Processing::get_pages( $post_types );
54
- if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
55
- return;
56
- }
57
-
58
- foreach ( $post_ids as $post_id ) {
59
- $is_elementor_post = get_post_meta( $post_id, '_elementor_version', true );
60
- if ( $is_elementor_post ) {
61
- $this->import_single_post( $post_id );
62
- }
63
- }
64
- }
65
- /**
66
- * Update post meta.
67
- *
68
- * @since 1.0.14
69
- * @param integer $post_id Post ID.
70
- * @return void
71
- */
72
- public function import_single_post( $post_id = 0 ) {
73
-
74
- if ( ! empty( $post_id ) ) {
75
-
76
- $hotlink_imported = get_post_meta( $post_id, '_astra_sites_hotlink_imported', true );
77
-
78
- if ( empty( $hotlink_imported ) ) {
79
-
80
- $data = get_post_meta( $post_id, '_elementor_data', true );
81
-
82
- if ( ! empty( $data ) ) {
83
-
84
- // Update WP form IDs.
85
- $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
86
- if ( $ids_mapping ) {
87
- foreach ( $ids_mapping as $old_id => $new_id ) {
88
- $data = str_replace( '[wpforms id=\"' . $old_id, '[wpforms id=\"' . $new_id, $data );
89
- }
90
- }
91
-
92
- $data = add_magic_quotes( $data );
93
- $data = json_decode( $data, true );
94
-
95
- // Import the data.
96
- $data = $this->process_export_import_content( $data, 'on_import' );
97
-
98
- // Update processed meta.
99
- update_metadata( 'post', $post_id, '_elementor_data', $data );
100
- update_metadata( 'post', $post_id, '_astra_sites_hotlink_imported', true );
101
-
102
- // !important, Clear the cache after images import.
103
- Plugin::$instance->posts_css_manager->clear_cache();
104
-
105
- }
106
- }
107
- }
108
- }
109
- }
1
+ <?php
2
+ /**
3
+ * Elementor Importer
4
+ *
5
+ * @package Astra Sites
6
+ */
7
+
8
+ namespace Elementor\TemplateLibrary;
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit; // Exit if accessed directly.
12
+ }
13
+
14
+ // If plugin - 'Elementor' not exist then return.
15
+ if ( ! class_exists( '\Elementor\Plugin' ) ) {
16
+ return;
17
+ }
18
+
19
+ use Elementor\Core\Base\Document;
20
+ use Elementor\DB;
21
+ use Elementor\Core\Settings\Page\Manager as PageSettingsManager;
22
+ use Elementor\Core\Settings\Manager as SettingsManager;
23
+ use Elementor\Core\Settings\Page\Model;
24
+ use Elementor\Editor;
25
+ use Elementor\Plugin;
26
+ use Elementor\Settings;
27
+ use Elementor\Utils;
28
+
29
+ /**
30
+ * Elementor template library local source.
31
+ *
32
+ * Elementor template library local source handler class is responsible for
33
+ * handling local Elementor templates saved by the user locally on his site.
34
+ *
35
+ * @since 1.2.13 Added compatibility for Elemetnor v2.5.0
36
+ * @since 1.0.0
37
+ */
38
+ class Astra_Sites_Batch_Processing_Elementor extends Source_Local {
39
+
40
+ /**
41
+ * Import
42
+ *
43
+ * @since 1.0.14
44
+ * @return void
45
+ */
46
+ public function import() {
47
+
48
+ $post_types = \Astra_Sites_Batch_Processing::get_post_types_supporting( 'elementor' );
49
+ if ( empty( $post_types ) && ! is_array( $post_types ) ) {
50
+ return;
51
+ }
52
+
53
+ $post_ids = \Astra_Sites_Batch_Processing::get_pages( $post_types );
54
+ if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
55
+ return;
56
+ }
57
+
58
+ foreach ( $post_ids as $post_id ) {
59
+ $is_elementor_post = get_post_meta( $post_id, '_elementor_version', true );
60
+ if ( $is_elementor_post ) {
61
+ $this->import_single_post( $post_id );
62
+ }
63
+ }
64
+ }
65
+ /**
66
+ * Update post meta.
67
+ *
68
+ * @since 1.0.14
69
+ * @param integer $post_id Post ID.
70
+ * @return void
71
+ */
72
+ public function import_single_post( $post_id = 0 ) {
73
+
74
+ if ( ! empty( $post_id ) ) {
75
+
76
+ $hotlink_imported = get_post_meta( $post_id, '_astra_sites_hotlink_imported', true );
77
+
78
+ if ( empty( $hotlink_imported ) ) {
79
+
80
+ $data = get_post_meta( $post_id, '_elementor_data', true );
81
+
82
+ if ( ! empty( $data ) ) {
83
+
84
+ // Update WP form IDs.
85
+ $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
86
+ if ( $ids_mapping ) {
87
+ foreach ( $ids_mapping as $old_id => $new_id ) {
88
+ $data = str_replace( '[wpforms id=\"' . $old_id, '[wpforms id=\"' . $new_id, $data );
89
+ }
90
+ }
91
+
92
+ $data = add_magic_quotes( $data );
93
+ $data = json_decode( $data, true );
94
+
95
+ // Import the data.
96
+ $data = $this->process_export_import_content( $data, 'on_import' );
97
+
98
+ // Update processed meta.
99
+ update_metadata( 'post', $post_id, '_elementor_data', $data );
100
+ update_metadata( 'post', $post_id, '_astra_sites_hotlink_imported', true );
101
+
102
+ // !important, Clear the cache after images import.
103
+ Plugin::$instance->posts_css_manager->clear_cache();
104
+
105
+ }
106
+ }
107
+ }
108
+ }
109
+ }
inc/importers/batch-processing/class-astra-sites-batch-processing-gutenberg.php CHANGED
@@ -1,165 +1,165 @@
1
- <?php
2
- /**
3
- * Batch Processing
4
- *
5
- * @package Astra Sites
6
- * @since 1.2.14
7
- */
8
-
9
- if ( ! class_exists( 'Astra_Sites_Batch_Processing_Gutenberg' ) ) :
10
-
11
- /**
12
- * Astra Sites Batch Processing Brizy
13
- *
14
- * @since 1.2.14
15
- */
16
- class Astra_Sites_Batch_Processing_Gutenberg {
17
-
18
- /**
19
- * Instance
20
- *
21
- * @since 1.2.14
22
- * @access private
23
- * @var object Class object.
24
- */
25
- private static $instance;
26
-
27
- /**
28
- * Initiator
29
- *
30
- * @since 1.2.14
31
- * @return object initialized object of class.
32
- */
33
- public static function get_instance() {
34
-
35
- if ( ! isset( self::$instance ) ) {
36
- self::$instance = new self;
37
- }
38
- return self::$instance;
39
- }
40
-
41
- /**
42
- * Constructor
43
- *
44
- * @since 1.2.14
45
- */
46
- public function __construct() {}
47
-
48
- /**
49
- * Allowed tags for the batch update process.
50
- *
51
- * @param array $allowedposttags Array of default allowable HTML tags.
52
- * @param string|array $context The context for which to retrieve tags. Allowed values are 'post',
53
- * 'strip', 'data', 'entities', or the name of a field filter such as
54
- * 'pre_user_description'.
55
- * @return array Array of allowed HTML tags and their allowed attributes.
56
- */
57
- function allowed_tags_and_attributes( $allowedposttags, $context ) {
58
-
59
- // Keep only for 'post' contenxt.
60
- if ( 'post' === $context ) {
61
-
62
- // <svg> tag and attributes.
63
- $allowedposttags['svg'] = array(
64
- 'xmlns' => true,
65
- 'viewbox' => true,
66
- );
67
-
68
- // <path> tag and attributes.
69
- $allowedposttags['path'] = array(
70
- 'd' => true,
71
- );
72
- }
73
-
74
- return $allowedposttags;
75
- }
76
-
77
- /**
78
- * Import
79
- *
80
- * @since 1.2.14
81
- * @return void
82
- */
83
- public function import() {
84
-
85
- // Allow the SVG tags in batch update process.
86
- add_filter( 'wp_kses_allowed_html', array( $this, 'allowed_tags_and_attributes' ), 10, 2 );
87
-
88
- Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for "Gutenberg" ----' );
89
-
90
- $post_ids = Astra_Sites_Batch_Processing::get_pages( array( 'page' ) );
91
- if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
92
- return;
93
- }
94
-
95
- foreach ( $post_ids as $post_id ) {
96
- $this->import_single_post( $post_id );
97
- }
98
- }
99
-
100
- /**
101
- * Update post meta.
102
- *
103
- * @param integer $post_id Post ID.
104
- * @return void
105
- */
106
- public function import_single_post( $post_id = 0 ) {
107
-
108
- $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
109
-
110
- // Post content.
111
- $content = get_post_field( 'post_content', $post_id );
112
-
113
- if ( ! empty( $ids_mapping ) ) {
114
- // Replace ID's.
115
- foreach ( $ids_mapping as $old_id => $new_id ) {
116
- $content = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $content );
117
- }
118
- }
119
-
120
- // This replaces the category ID in UAG Post blocks.
121
- $site_options = get_option( 'astra_sites_import_data', array() );
122
-
123
- if ( isset( $site_options['astra-site-taxonomy-mapping'] ) ) {
124
-
125
- $tax_mapping = $site_options['astra-site-taxonomy-mapping'];
126
-
127
- if ( isset( $tax_mapping['post'] ) ) {
128
-
129
- $catogory_mapping = ( isset( $tax_mapping['post']['category'] ) ) ? $tax_mapping['post']['category'] : array();
130
-
131
- if ( is_array( $catogory_mapping ) ) {
132
-
133
- foreach ( $catogory_mapping as $key => $value ) {
134
-
135
- $this_site_term = get_term_by( 'slug', $value['slug'], 'category' );
136
- $content = str_replace( '"categories":"' . $value['id'], '"categories":"' . $this_site_term->term_id, $content );
137
- }
138
- }
139
- }
140
- }
141
-
142
- // # Tweak
143
- // Gutenberg break block markup from render. Because the '&' is updated in database with '&amp;' and it
144
- // expects as 'u0026amp;'. So, Converted '&amp;' with 'u0026amp;'.
145
- //
146
- // @todo This affect for normal page content too. Detect only Gutenberg pages and process only on it.
147
- $content = str_replace( '&amp;', "\u0026amp;", $content );
148
-
149
- // Update content.
150
- wp_update_post(
151
- array(
152
- 'ID' => $post_id,
153
- 'post_content' => $content,
154
- )
155
- );
156
- }
157
-
158
- }
159
-
160
- /**
161
- * Kicking this off by calling 'get_instance()' method
162
- */
163
- Astra_Sites_Batch_Processing_Gutenberg::get_instance();
164
-
165
- endif;
1
+ <?php
2
+ /**
3
+ * Batch Processing
4
+ *
5
+ * @package Astra Sites
6
+ * @since 1.2.14
7
+ */
8
+
9
+ if ( ! class_exists( 'Astra_Sites_Batch_Processing_Gutenberg' ) ) :
10
+
11
+ /**
12
+ * Astra Sites Batch Processing Brizy
13
+ *
14
+ * @since 1.2.14
15
+ */
16
+ class Astra_Sites_Batch_Processing_Gutenberg {
17
+
18
+ /**
19
+ * Instance
20
+ *
21
+ * @since 1.2.14
22
+ * @access private
23
+ * @var object Class object.
24
+ */
25
+ private static $instance;
26
+
27
+ /**
28
+ * Initiator
29
+ *
30
+ * @since 1.2.14
31
+ * @return object initialized object of class.
32
+ */
33
+ public static function get_instance() {
34
+
35
+ if ( ! isset( self::$instance ) ) {
36
+ self::$instance = new self;
37
+ }
38
+ return self::$instance;
39
+ }
40
+
41
+ /**
42
+ * Constructor
43
+ *
44
+ * @since 1.2.14
45
+ */
46
+ public function __construct() {}
47
+
48
+ /**
49
+ * Allowed tags for the batch update process.
50
+ *
51
+ * @param array $allowedposttags Array of default allowable HTML tags.
52
+ * @param string|array $context The context for which to retrieve tags. Allowed values are 'post',
53
+ * 'strip', 'data', 'entities', or the name of a field filter such as
54
+ * 'pre_user_description'.
55
+ * @return array Array of allowed HTML tags and their allowed attributes.
56
+ */
57
+ function allowed_tags_and_attributes( $allowedposttags, $context ) {
58
+
59
+ // Keep only for 'post' contenxt.
60
+ if ( 'post' === $context ) {
61
+
62
+ // <svg> tag and attributes.
63
+ $allowedposttags['svg'] = array(
64
+ 'xmlns' => true,
65
+ 'viewbox' => true,
66
+ );
67
+
68
+ // <path> tag and attributes.
69
+ $allowedposttags['path'] = array(
70
+ 'd' => true,
71
+ );
72
+ }
73
+
74
+ return $allowedposttags;
75
+ }
76
+
77
+ /**
78
+ * Import
79
+ *
80
+ * @since 1.2.14
81
+ * @return void
82
+ */
83
+ public function import() {
84
+
85
+ // Allow the SVG tags in batch update process.
86
+ add_filter( 'wp_kses_allowed_html', array( $this, 'allowed_tags_and_attributes' ), 10, 2 );
87
+
88
+ Astra_Sites_Importer_Log::add( '---- Processing WordPress Posts / Pages - for "Gutenberg" ----' );
89
+
90
+ $post_ids = Astra_Sites_Batch_Processing::get_pages( array( 'page' ) );
91
+ if ( empty( $post_ids ) && ! is_array( $post_ids ) ) {
92
+ return;
93
+ }
94
+
95
+ foreach ( $post_ids as $post_id ) {
96
+ $this->import_single_post( $post_id );
97
+ }
98
+ }
99
+
100
+ /**
101
+ * Update post meta.
102
+ *
103
+ * @param integer $post_id Post ID.
104
+ * @return void
105
+ */
106
+ public function import_single_post( $post_id = 0 ) {
107
+
108
+ $ids_mapping = get_option( 'astra_sites_wpforms_ids_mapping', array() );
109
+
110
+ // Post content.
111
+ $content = get_post_field( 'post_content', $post_id );
112
+
113
+ if ( ! empty( $ids_mapping ) ) {
114
+ // Replace ID's.
115
+ foreach ( $ids_mapping as $old_id => $new_id ) {
116
+ $content = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $content );
117
+ }
118
+ }
119
+
120
+ // This replaces the category ID in UAG Post blocks.
121
+ $site_options = get_option( 'astra_sites_import_data', array() );
122
+
123
+ if ( isset( $site_options['astra-site-taxonomy-mapping'] ) ) {
124
+
125
+ $tax_mapping = $site_options['astra-site-taxonomy-mapping'];
126
+
127
+ if ( isset( $tax_mapping['post'] ) ) {
128
+
129
+ $catogory_mapping = ( isset( $tax_mapping['post']['category'] ) ) ? $tax_mapping['post']['category'] : array();
130
+
131
+ if ( is_array( $catogory_mapping ) ) {
132
+
133
+ foreach ( $catogory_mapping as $key => $value ) {
134
+
135
+ $this_site_term = get_term_by( 'slug', $value['slug'], 'category' );
136
+ $content = str_replace( '"categories":"' . $value['id'], '"categories":"' . $this_site_term->term_id, $content );
137
+ }
138
+ }
139
+ }
140
+ }
141
+
142
+ // # Tweak
143
+ // Gutenberg break block markup from render. Because the '&' is updated in database with '&amp;' and it
144
+ // expects as 'u0026amp;'. So, Converted '&amp;' with 'u0026amp;'.
145
+ //
146
+ // @todo This affect for normal page content too. Detect only Gutenberg pages and process only on it.
147
+ $content = str_replace( '&amp;', "\u0026amp;", $content );
148
+
149
+ // Update content.
150
+ wp_update_post(
151
+ array(
152
+ 'ID' => $post_id,
153
+ 'post_content' => $content,
154
+ )
155
+ );
156
+ }
157
+
158
+ }
159
+
160
+ /**
161
+ * Kicking this off by calling 'get_instance()' method
162
+ */
163
+ Astra_Sites_Batch_Processing_Gutenberg::get_instance();
164
+
165
+ endif;
inc/importers/wxr-importer/class-astra-wxr-importer.php CHANGED
@@ -1,446 +1,446 @@
1
- <?php
2
- /**
3
- * Class Astra WXR Importer
4
- *
5
- * @since 1.0.0
6
- * @package Astra Addon
7
- */
8
-
9
- defined( 'ABSPATH' ) or exit;
10
-
11
- /**
12
- * Class Astra WXR Importer
13
- *
14
- * @since 1.0.0
15
- */
16
- class Astra_WXR_Importer {
17
-
18
- /**
19
- * Instance of Astra_WXR_Importer
20
- *
21
- * @since 1.0.0
22
- * @var Astra_WXR_Importer
23
- */
24
- private static $_instance = null;
25
-
26
- /**
27
- * Instantiate Astra_WXR_Importer
28
- *
29
- * @since 1.0.0
30
- * @return (Object) Astra_WXR_Importer.
31
- */
32
- public static function instance() {
33
- if ( ! isset( self::$_instance ) ) {
34
- self::$_instance = new self();
35
- }
36
-
37
- return self::$_instance;
38
- }
39
-
40
- /**
41
- * Constructor.
42
- *
43
- * @since 1.0.0
44
- */
45
- private function __construct() {
46
-
47
- require_once ABSPATH . '/wp-admin/includes/class-wp-importer.php';
48
- require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-logger.php';
49
- require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wp-importer-logger-serversentevents.php';
50
- require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wxr-importer.php';
51
- require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wxr-import-info.php';
52
-
53
- add_filter( 'upload_mimes', array( $this, 'custom_upload_mimes' ) );
54
- add_action( 'wp_ajax_astra-wxr-import', array( $this, 'sse_import' ) );
55
- add_filter( 'wxr_importer.pre_process.user', '__return_null' );
56
- add_filter( 'wxr_importer.pre_process.post', array( $this, 'gutenberg_content_fix' ), 10, 4 );
57
-
58
- if ( version_compare( get_bloginfo( 'version' ), '5.1.0', '>=' ) ) {
59
- add_filter( 'wp_check_filetype_and_ext', array( $this, 'real_mime_types_5_1_0' ), 10, 5 );
60
- } else {
61
- add_filter( 'wp_check_filetype_and_ext', array( $this, 'real_mime_types' ), 10, 4 );
62
- }
63
-
64
- }
65
-
66
- /**
67
- * Track Imported Post
68
- *
69
- * @param int $post_id Post ID.
70
- * @return void
71
- */
72
- function track_post( $post_id ) {
73
- Astra_Sites_Importer_Log::add( 'Inserted - Post ' . $post_id . ' - ' . get_post_type( $post_id ) . ' - ' . get_the_title( $post_id ) );
74
- update_post_meta( $post_id, '_astra_sites_imported_post', true );
75
- }
76
-
77
- /**
78
- * Track Imported Term
79
- *
80
- * @param int $term_id Term ID.
81
- * @return void
82
- */
83
- function track_term( $term_id ) {
84
- $term = get_term( $term_id );
85
- if ( $term ) {
86
- Astra_Sites_Importer_Log::add( 'Inserted - Term ' . $term_id . ' - ' . json_encode( $term ) );
87
- }
88
- update_term_meta( $term_id, '_astra_sites_imported_term', true );
89
- }
90
-
91
- /**
92
- * Gutenberg Content Data Fix
93
- *
94
- * Gutenberg encode the page content. In import process the encoded characterless e.g. <, > are
95
- * decoded into HTML tag and it break the Gutenberg render markup.
96
- *
97
- * Note: We have not check the post is created with Gutenberg or not. We have imported other sites
98
- * and confirm that this works for every other page builders too.
99
- *
100
- * @since 1.2.12
101
- *
102
- * @param array $data Post data. (Return empty to skip.).
103
- * @param array $meta Meta data.
104
- * @param array $comments Comments on the post.
105
- * @param array $terms Terms on the post.
106
- */
107
- function gutenberg_content_fix( $data, $meta, $comments, $terms ) {
108
- if ( isset( $data['post_content'] ) ) {
109
- $data['post_content'] = wp_slash( $data['post_content'] );
110
- }
111
- return $data;
112
- }
113
-
114
- /**
115
- * Different MIME type of different PHP version
116
- *
117
- * Filters the "real" file type of the given file.
118
- *
119
- * @since 1.2.9
120
- *
121
- * @param array $defaults File data array containing 'ext', 'type', and
122
- * 'proper_filename' keys.
123
- * @param string $file Full path to the file.
124
- * @param string $filename The name of the file (may differ from $file due to
125
- * $file being in a tmp directory).
126
- * @param array $mimes Key is the file extension with value as the mime type.
127
- * @param string $real_mime Real MIME type of the uploaded file.
128
- */
129
- function real_mime_types_5_1_0( $defaults, $file, $filename, $mimes, $real_mime ) {
130
- return $this->real_mimes( $defaults, $filename );
131
- }
132
-
133
- /**
134
- * Different MIME type of different PHP version
135
- *
136
- * Filters the "real" file type of the given file.
137
- *
138
- * @since 1.2.9
139
- *
140
- * @param array $defaults File data array containing 'ext', 'type', and
141
- * 'proper_filename' keys.
142
- * @param string $file Full path to the file.
143
- * @param string $filename The name of the file (may differ from $file due to
144
- * $file being in a tmp directory).
145
- * @param array $mimes Key is the file extension with value as the mime type.
146
- */
147
- function real_mime_types( $defaults, $file, $filename, $mimes ) {
148
- return $this->real_mimes( $defaults, $filename );
149
- }
150
-
151
- /**
152
- * Real Mime Type
153
- *
154
- * @since 1.2.15
155
- *
156
- * @param array $defaults File data array containing 'ext', 'type', and
157
- * 'proper_filename' keys.
158
- * @param string $filename The name of the file (may differ from $file due to
159
- * $file being in a tmp directory).
160
- */
161
- function real_mimes( $defaults, $filename ) {
162
-
163
- // Set EXT and real MIME type only for the file name `wxr.xml`.
164
- if ( 'wxr.xml' === $filename ) {
165
- $defaults['ext'] = 'xml';
166
- $defaults['type'] = 'text/xml';
167
- }
168
-
169
- // Set EXT and real MIME type only for the file name `wpforms.json`.
170
- if ( 'wpforms.json' === $filename ) {
171
- $defaults['ext'] = 'json';
172
- $defaults['type'] = 'text/plain';
173
- }
174
-
175
- return $defaults;
176
- }
177
-
178
- /**
179
- * Constructor.
180
- *
181
- * @since 1.1.0
182
- */
183
- function sse_import() {
184
-
185
- // Start the event stream.
186
- header( 'Content-Type: text/event-stream, charset=UTF-8' );
187
-
188
- // Turn off PHP output compression.
189
- $previous = error_reporting( error_reporting() ^ E_WARNING );
190
- ini_set( 'output_buffering', 'off' );
191
- ini_set( 'zlib.output_compression', false );
192
- error_reporting( $previous );
193
-
194
- if ( $GLOBALS['is_nginx'] ) {
195
- // Setting this header instructs Nginx to disable fastcgi_buffering
196
- // and disable gzip for this request.
197
- header( 'X-Accel-Buffering: no' );
198
- header( 'Content-Encoding: none' );
199
- }
200
-
201
- $xml_url = urldecode( $_REQUEST['xml_url'] );
202
- if ( empty( $xml_url ) ) {
203
- exit;
204
- }
205
-
206
- // 2KB padding for IE
207
- echo ':' . str_repeat( ' ', 2048 ) . "\n\n";
208
-
209
- // Time to run the import!
210
- set_time_limit( 0 );
211
-
212
- // Ensure we're not buffered.
213
- wp_ob_end_flush_all();
214
- flush();
215
-
216
- // Are we allowed to create users?
217
- add_filter( 'wxr_importer.pre_process.user', '__return_null' );
218
-
219
- // Keep track of our progress.
220
- add_action( 'wxr_importer.processed.post', array( $this, 'imported_post' ), 10, 2 );
221
- add_action( 'wxr_importer.process_failed.post', array( $this, 'imported_post' ), 10, 2 );
222
- add_action( 'wxr_importer.process_already_imported.post', array( $this, 'already_imported_post' ), 10, 2 );
223
- add_action( 'wxr_importer.process_skipped.post', array( $this, 'already_imported_post' ), 10, 2 );
224
- add_action( 'wxr_importer.processed.comment', array( $this, 'imported_comment' ) );
225
- add_action( 'wxr_importer.process_already_imported.comment', array( $this, 'imported_comment' ) );
226
- add_action( 'wxr_importer.processed.term', array( $this, 'imported_term' ) );
227
- add_action( 'wxr_importer.process_failed.term', array( $this, 'imported_term' ) );
228
- add_action( 'wxr_importer.process_already_imported.term', array( $this, 'imported_term' ) );
229
- add_action( 'wxr_importer.processed.user', array( $this, 'imported_user' ) );
230
- add_action( 'wxr_importer.process_failed.user', array( $this, 'imported_user' ) );
231
-
232
- // Keep track of our progress.
233
- add_action( 'wxr_importer.processed.post', array( $this, 'track_post' ) );
234
- add_action( 'wxr_importer.processed.term', array( $this, 'track_term' ) );
235
-
236
- // Flush once more.
237
- flush();
238
-
239
- $importer = $this->get_importer();
240
- $response = $importer->import( $xml_url );
241
-
242
- // Let the browser know we're done.
243
- $complete = array(
244
- 'action' => 'complete',
245
- 'error' => false,
246
- );
247
- if ( is_wp_error( $response ) ) {
248
- $complete['error'] = $response->get_error_message();
249
- }
250
-
251
- $this->emit_sse_message( $complete );
252
- exit;
253
- }
254
-
255
- /**
256
- * Add .xml files as supported format in the uploader.
257
- *
258
- * @since 1.1.5 Added SVG file support.
259
- *
260
- * @since 1.0.0
261
- *
262
- * @param array $mimes Already supported mime types.
263
- */
264
- public function custom_upload_mimes( $mimes ) {
265
-
266
- // Allow SVG files.
267
- $mimes['svg'] = 'image/svg+xml';
268
- $mimes['svgz'] = 'image/svg+xml';
269
-
270
- // Allow XML files.
271
- $mimes['xml'] = 'text/xml';
272
-
273
- // Allow JSON files.
274
- $mimes['json'] = 'application/json';
275
-
276
- return $mimes;
277
- }
278
-
279
- /**
280
- * Start the xml import.
281
- *
282
- * @since 1.0.0
283
- *
284
- * @param (String) $path Absolute path to the XML file.
285
- */
286
- public function get_xml_data( $path ) {
287
-
288
- $args = array(
289
- 'action' => 'astra-wxr-import',
290
- 'id' => '1',
291
- 'xml_url' => $path,
292
- );
293
- $url = add_query_arg( urlencode_deep( $args ), admin_url( 'admin-ajax.php' ) );
294
-
295
- $data = $this->get_data( $path );
296
-
297
- return array(
298
- 'count' => array(
299
- 'posts' => $data->post_count,
300
- 'media' => $data->media_count,
301
- 'users' => count( $data->users ),
302
- 'comments' => $data->comment_count,
303
- 'terms' => $data->term_count,
304
- ),
305
- 'url' => $url,
306
- 'strings' => array(
307
- 'complete' => __( 'Import complete!', 'astra-sites' ),
308
- ),
309
- );
310
- }
311
-
312
- /**
313
- * Get XML data.
314
- *
315
- * @since 1.1.0
316
- * @param string $url Downloaded XML file absolute URL.
317
- * @return array XML file data.
318
- */
319
- function get_data( $url ) {
320
- $importer = $this->get_importer();
321
- $data = $importer->get_preliminary_information( $url );
322
- if ( is_wp_error( $data ) ) {
323
- return $data;
324
- }
325
- return $data;
326
- }
327
-
328
- /**
329
- * Get Importer
330
- *
331
- * @since 1.1.0
332
- * @return object Importer object.
333
- */
334
- public function get_importer() {
335
- $options = apply_filters(
336
- 'astra_sites_xml_import_options',
337
- array(
338
- 'fetch_attachments' => true,
339
- 'default_author' => get_current_user_id(),
340
- )
341
- );
342
-
343
- $importer = new WXR_Importer( $options );
344
- $logger = new WP_Importer_Logger_ServerSentEvents();
345
-
346
- $importer->set_logger( $logger );
347
- return $importer;
348
- }
349
-
350
- /**
351
- * Send message when a post has been imported.
352
- *
353
- * @since 1.1.0
354
- * @param int $id Post ID.
355
- * @param array $data Post data saved to the DB.
356
- */
357
- public function imported_post( $id, $data ) {
358
- $this->emit_sse_message(
359
- array(
360
- 'action' => 'updateDelta',
361
- 'type' => ( 'attachment' === $data['post_type'] ) ? 'media' : 'posts',
362
- 'delta' => 1,
363
- )
364
- );
365
- }
366
-
367
- /**
368
- * Send message when a post is marked as already imported.
369
- *
370
- * @since 1.1.0
371
- * @param array $data Post data saved to the DB.
372
- */
373
- public function already_imported_post( $data ) {
374
- $this->emit_sse_message(
375
- array(
376
- 'action' => 'updateDelta',
377
- 'type' => ( 'attachment' === $data['post_type'] ) ? 'media' : 'posts',
378
- 'delta' => 1,
379
- )
380
- );
381
- }
382
-
383
- /**
384
- * Send message when a comment has been imported.
385
- *
386
- * @since 1.1.0
387
- */
388
- public function imported_comment() {
389
- $this->emit_sse_message(
390
- array(
391
- 'action' => 'updateDelta',
392
- 'type' => 'comments',
393
- 'delta' => 1,
394
- )
395
- );
396
- }
397
-
398
- /**
399
- * Send message when a term has been imported.
400
- *
401
- * @since 1.1.0
402
- */
403
- public function imported_term() {
404
- $this->emit_sse_message(
405
- array(
406
- 'action' => 'updateDelta',
407
- 'type' => 'terms',
408
- 'delta' => 1,
409
- )
410
- );
411
- }
412
-
413
- /**
414
- * Send message when a user has been imported.
415
- *
416
- * @since 1.1.0
417
- */
418
- public function imported_user() {
419
- $this->emit_sse_message(
420
- array(
421
- 'action' => 'updateDelta',
422
- 'type' => 'users',
423
- 'delta' => 1,
424
- )
425
- );
426
- }
427
-
428
- /**
429
- * Emit a Server-Sent Events message.
430
- *
431
- * @since 1.1.0
432
- * @param mixed $data Data to be JSON-encoded and sent in the message.
433
- */
434
- public function emit_sse_message( $data ) {
435
- echo "event: message\n";
436
- echo 'data: ' . wp_json_encode( $data ) . "\n\n";
437
-
438
- // Extra padding.
439
- echo ':' . str_repeat( ' ', 2048 ) . "\n\n";
440
-
441
- flush();
442
- }
443
-
444
- }
445
-
446
- Astra_WXR_Importer::instance();
1
+ <?php
2
+ /**
3
+ * Class Astra WXR Importer
4
+ *
5
+ * @since 1.0.0
6
+ * @package Astra Addon
7
+ */
8
+
9
+ defined( 'ABSPATH' ) or exit;
10
+
11
+ /**
12
+ * Class Astra WXR Importer
13
+ *
14
+ * @since 1.0.0
15
+ */
16
+ class Astra_WXR_Importer {
17
+
18
+ /**
19
+ * Instance of Astra_WXR_Importer
20
+ *
21
+ * @since 1.0.0
22
+ * @var Astra_WXR_Importer
23
+ */
24
+ private static $_instance = null;
25
+
26
+ /**
27
+ * Instantiate Astra_WXR_Importer
28
+ *
29
+ * @since 1.0.0
30
+ * @return (Object) Astra_WXR_Importer.
31
+ */
32
+ public static function instance() {
33
+ if ( ! isset( self::$_instance ) ) {
34
+ self::$_instance = new self();
35
+ }
36
+
37
+ return self::$_instance;
38
+ }
39
+
40
+ /**
41
+ * Constructor.
42
+ *
43
+ * @since 1.0.0
44
+ */
45
+ private function __construct() {
46
+
47
+ require_once ABSPATH . '/wp-admin/includes/class-wp-importer.php';
48
+ require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-logger.php';
49
+ require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wp-importer-logger-serversentevents.php';
50
+ require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wxr-importer.php';
51
+ require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-wxr-import-info.php';
52
+
53
+ add_filter( 'upload_mimes', array( $this, 'custom_upload_mimes' ) );
54
+ add_action( 'wp_ajax_astra-wxr-import', array( $this, 'sse_import' ) );
55
+ add_filter( 'wxr_importer.pre_process.user', '__return_null' );
56
+ add_filter( 'wxr_importer.pre_process.post', array( $this, 'gutenberg_content_fix' ), 10, 4 );
57
+
58
+ if ( version_compare( get_bloginfo( 'version' ), '5.1.0', '>=' ) ) {
59
+ add_filter( 'wp_check_filetype_and_ext', array( $this, 'real_mime_types_5_1_0' ), 10, 5 );
60
+ } else {
61
+ add_filter( 'wp_check_filetype_and_ext', array( $this, 'real_mime_types' ), 10, 4 );
62
+ }
63
+
64
+ }
65
+
66
+ /**
67
+ * Track Imported Post
68
+ *
69
+ * @param int $post_id Post ID.
70
+ * @return void
71
+ */
72
+ function track_post( $post_id ) {
73
+ Astra_Sites_Importer_Log::add( 'Inserted - Post ' . $post_id . ' - ' . get_post_type( $post_id ) . ' - ' . get_the_title( $post_id ) );
74
+ update_post_meta( $post_id, '_astra_sites_imported_post', true );
75
+ }
76
+
77
+ /**
78
+ * Track Imported Term
79
+ *
80
+ * @param int $term_id Term ID.
81
+ * @return void
82
+ */
83
+ function track_term( $term_id ) {
84
+ $term = get_term( $term_id );
85
+ if ( $term ) {
86
+ Astra_Sites_Importer_Log::add( 'Inserted - Term ' . $term_id . ' - ' . json_encode( $term ) );
87
+ }
88
+ update_term_meta( $term_id, '_astra_sites_imported_term', true );
89
+ }
90
+
91
+ /**
92
+ * Gutenberg Content Data Fix
93
+ *
94
+ * Gutenberg encode the page content. In import process the encoded characterless e.g. <, > are
95
+ * decoded into HTML tag and it break the Gutenberg render markup.
96
+ *
97
+ * Note: We have not check the post is created with Gutenberg or not. We have imported other sites
98
+ * and confirm that this works for every other page builders too.
99
+ *
100
+ * @since 1.2.12
101
+ *
102
+ * @param array $data Post data. (Return empty to skip.).
103
+ * @param array $meta Meta data.
104
+ * @param array $comments Comments on the post.
105
+ * @param array $terms Terms on the post.
106
+ */
107
+ function gutenberg_content_fix( $data, $meta, $comments, $terms ) {
108
+ if ( isset( $data['post_content'] ) ) {
109
+ $data['post_content'] = wp_slash( $data['post_content'] );
110
+ }
111
+ return $data;
112
+ }
113
+
114
+ /**
115
+ * Different MIME type of different PHP version
116
+ *
117
+ * Filters the "real" file type of the given file.
118
+ *
119
+ * @since 1.2.9
120
+ *
121
+ * @param array $defaults File data array containing 'ext', 'type', and
122
+ * 'proper_filename' keys.
123
+ * @param string $file Full path to the file.
124
+ * @param string $filename The name of the file (may differ from $file due to
125
+ * $file being in a tmp directory).
126
+ * @param array $mimes Key is the file extension with value as the mime type.
127
+ * @param string $real_mime Real MIME type of the uploaded file.
128
+ */
129
+ function real_mime_types_5_1_0( $defaults, $file, $filename, $mimes, $real_mime ) {
130
+ return $this->real_mimes( $defaults, $filename );
131
+ }
132
+
133
+ /**
134
+ * Different MIME type of different PHP version
135
+ *
136
+ * Filters the "real" file type of the given file.
137
+ *
138
+ * @since 1.2.9
139
+ *
140
+ * @param array $defaults File data array containing 'ext', 'type', and
141
+ * 'proper_filename' keys.
142
+ * @param string $file Full path to the file.
143
+ * @param string $filename The name of the file (may differ from $file due to
144
+ * $file being in a tmp directory).
145
+ * @param array $mimes Key is the file extension with value as the mime type.
146
+ */
147
+ function real_mime_types( $defaults, $file, $filename, $mimes ) {
148
+ return $this->real_mimes( $defaults, $filename );
149
+ }
150
+
151
+ /**
152
+ * Real Mime Type
153
+ *
154
+ * @since 1.2.15
155
+ *
156
+ * @param array $defaults File data array containing 'ext', 'type', and
157
+ * 'proper_filename' keys.
158
+ * @param string $filename The name of the file (may differ from $file due to
159
+ * $file being in a tmp directory).
160
+ */
161
+ function real_mimes( $defaults, $filename ) {
162
+
163
+ // Set EXT and real MIME type only for the file name `wxr.xml`.
164
+ if ( 'wxr.xml' === $filename ) {
165
+ $defaults['ext'] = 'xml';
166
+ $defaults['type'] = 'text/xml';
167
+ }
168
+
169
+ // Set EXT and real MIME type only for the file name `wpforms.json`.
170
+ if ( 'wpforms.json' === $filename ) {
171
+ $defaults['ext'] = 'json';
172
+ $defaults['type'] = 'text/plain';
173
+ }
174
+
175
+ return $defaults;
176
+ }
177
+
178
+ /**
179
+ * Constructor.
180
+ *
181
+ * @since 1.1.0
182
+ */
183
+ function sse_import() {
184
+
185
+ // Start the event stream.
186
+ header( 'Content-Type: text/event-stream, charset=UTF-8' );
187
+
188
+ // Turn off PHP output compression.
189
+ $previous = error_reporting( error_reporting() ^ E_WARNING );
190
+ ini_set( 'output_buffering', 'off' );
191
+ ini_set( 'zlib.output_compression', false );
192
+ error_reporting( $previous );
193
+
194
+ if ( $GLOBALS['is_nginx'] ) {
195
+ // Setting this header instructs Nginx to disable fastcgi_buffering
196
+ // and disable gzip for this request.
197
+ header( 'X-Accel-Buffering: no' );
198
+ header( 'Content-Encoding: none' );
199
+ }
200
+
201
+ $xml_url = urldecode( $_REQUEST['xml_url'] );
202
+ if ( empty( $xml_url ) ) {
203
+ exit;
204
+ }
205
+
206
+ // 2KB padding for IE
207
+ echo ':' . str_repeat( ' ', 2048 ) . "\n\n";
208
+
209
+ // Time to run the import!
210
+ set_time_limit( 0 );
211
+
212
+ // Ensure we're not buffered.
213
+ wp_ob_end_flush_all();
214
+ flush();
215
+
216
+ // Are we allowed to create users?
217
+ add_filter( 'wxr_importer.pre_process.user', '__return_null' );
218
+
219
+ // Keep track of our progress.
220
+ add_action( 'wxr_importer.processed.post', array( $this, 'imported_post' ), 10, 2 );
221
+ add_action( 'wxr_importer.process_failed.post', array( $this, 'imported_post' ), 10, 2 );
222
+ add_action( 'wxr_importer.process_already_imported.post', array( $this, 'already_imported_post' ), 10, 2 );
223
+ add_action( 'wxr_importer.process_skipped.post', array( $this, 'already_imported_post' ), 10, 2 );
224
+ add_action( 'wxr_importer.processed.comment', array( $this, 'imported_comment' ) );
225
+ add_action( 'wxr_importer.process_already_imported.comment', array( $this, 'imported_comment' ) );
226
+ add_action( 'wxr_importer.processed.term', array( $this, 'imported_term' ) );
227
+ add_action( 'wxr_importer.process_failed.term', array( $this, 'imported_term' ) );
228
+ add_action( 'wxr_importer.process_already_imported.term', array( $this, 'imported_term' ) );
229
+ add_action( 'wxr_importer.processed.user', array( $this, 'imported_user' ) );
230
+ add_action( 'wxr_importer.process_failed.user', array( $this, 'imported_user' ) );
231
+
232
+ // Keep track of our progress.
233
+ add_action( 'wxr_importer.processed.post', array( $this, 'track_post' ) );
234
+ add_action( 'wxr_importer.processed.term', array( $this, 'track_term' ) );
235
+
236
+ // Flush once more.
237
+ flush();
238
+
239
+ $importer = $this->get_importer();
240
+ $response = $importer->import( $xml_url );
241
+
242
+ // Let the browser know we're done.
243
+ $complete = array(
244
+ 'action' => 'complete',
245
+ 'error' => false,
246
+ );
247
+ if ( is_wp_error( $response ) ) {
248
+ $complete['error'] = $response->get_error_message();
249
+ }
250
+
251
+ $this->emit_sse_message( $complete );
252
+ exit;
253
+ }
254
+
255
+ /**
256
+ * Add .xml files as supported format in the uploader.
257
+ *
258
+ * @since 1.1.5 Added SVG file support.
259
+ *
260
+ * @since 1.0.0
261
+ *
262
+ * @param array $mimes Already supported mime types.
263
+ */
264
+ public function custom_upload_mimes( $mimes ) {
265
+
266
+ // Allow SVG files.
267
+ $mimes['svg'] = 'image/svg+xml';
268
+ $mimes['svgz'] = 'image/svg+xml';
269
+
270
+ // Allow XML files.
271
+ $mimes['xml'] = 'text/xml';
272
+
273
+ // Allow JSON files.
274
+ $mimes['json'] = 'application/json';
275
+
276
+ return $mimes;
277
+ }
278
+
279
+ /**
280
+ * Start the xml import.
281
+ *
282
+ * @since 1.0.0
283
+ *
284
+ * @param (String) $path Absolute path to the XML file.
285
+ */
286
+ public function get_xml_data( $path ) {
287
+
288
+ $args = array(
289
+ 'action' => 'astra-wxr-import',
290
+ 'id' => '1',
291
+ 'xml_url' => $path,
292
+ );
293
+ $url = add_query_arg( urlencode_deep( $args ), admin_url( 'admin-ajax.php' ) );
294
+
295
+ $data = $this->get_data( $path );
296
+
297
+ return array(
298
+ 'count' => array(
299
+ 'posts' => $data->post_count,
300
+ 'media' => $data->media_count,
301
+ 'users' => count( $data->users ),
302
+ 'comments' => $data->comment_count,
303
+ 'terms' => $data->term_count,
304
+ ),
305
+ 'url' => $url,
306
+ 'strings' => array(
307
+ 'complete' => __( 'Import complete!', 'astra-sites' ),
308
+ ),
309
+ );
310
+ }
311
+
312
+ /**
313
+ * Get XML data.
314
+ *
315
+ * @since 1.1.0
316
+ * @param string $url Downloaded XML file absolute URL.
317
+ * @return array XML file data.
318
+ */
319
+ function get_data( $url ) {
320
+ $importer = $this->get_importer();
321
+ $data = $importer->get_preliminary_information( $url );
322
+ if ( is_wp_error( $data ) ) {
323
+ return $data;
324
+ }
325
+ return $data;
326
+ }
327
+
328
+ /**
329
+ * Get Importer
330
+ *
331
+ * @since 1.1.0
332
+ * @return object Importer object.
333
+ */
334
+ public function get_importer() {
335
+ $options = apply_filters(
336
+ 'astra_sites_xml_import_options',
337
+ array(
338
+ 'fetch_attachments' => true,
339
+ 'default_author' => get_current_user_id(),
340
+ )
341
+ );
342
+
343
+ $importer = new WXR_Importer( $options );
344
+ $logger = new WP_Importer_Logger_ServerSentEvents();
345
+
346
+ $importer->set_logger( $logger );
347
+ return $importer;
348
+ }
349
+
350
+ /**
351
+ * Send message when a post has been imported.
352
+ *
353
+ * @since 1.1.0
354
+ * @param int $id Post ID.
355
+ * @param array $data Post data saved to the DB.
356
+ */
357
+ public function imported_post( $id, $data ) {
358
+ $this->emit_sse_message(
359
+ array(
360
+ 'action' => 'updateDelta',
361
+ 'type' => ( 'attachment' === $data['post_type'] ) ? 'media' : 'posts',
362
+ 'delta' => 1,
363
+ )
364
+ );
365
+ }
366
+
367
+ /**
368
+ * Send message when a post is marked as already imported.
369
+ *
370
+ * @since 1.1.0
371
+ * @param array $data Post data saved to the DB.
372
+ */
373
+ public function already_imported_post( $data ) {
374
+ $this->emit_sse_message(
375
+ array(
376
+ 'action' => 'updateDelta',
377
+ 'type' => ( 'attachment' === $data['post_type'] ) ? 'media' : 'posts',
378
+ 'delta' => 1,
379
+ )
380
+ );
381
+ }
382
+
383
+ /**
384
+ * Send message when a comment has been imported.
385
+ *
386
+ * @since 1.1.0
387
+ */
388
+ public function imported_comment() {
389
+ $this->emit_sse_message(
390
+ array(
391
+ 'action' => 'updateDelta',
392
+ 'type' => 'comments',
393
+ 'delta' => 1,
394
+ )
395
+ );
396
+ }
397
+
398
+ /**
399
+ * Send message when a term has been imported.
400
+ *
401
+ * @since 1.1.0
402
+ */
403
+ public function imported_term() {
404
+ $this->emit_sse_message(
405
+ array(
406
+ 'action' => 'updateDelta',
407
+ 'type' => 'terms',
408
+ 'delta' => 1,
409
+ )
410
+ );
411
+ }
412
+
413
+ /**
414
+ * Send message when a user has been imported.
415
+ *
416
+ * @since 1.1.0
417
+ */
418
+ public function imported_user() {
419
+ $this->emit_sse_message(
420
+ array(
421
+ 'action' => 'updateDelta',
422
+ 'type' => 'users',
423
+ 'delta' => 1,
424
+ )
425
+ );
426
+ }
427
+
428
+ /**
429
+ * Emit a Server-Sent Events message.
430
+ *
431
+ * @since 1.1.0
432
+ * @param mixed $data Data to be JSON-encoded and sent in the message.
433
+ */
434
+ public function emit_sse_message( $data ) {
435
+ echo "event: message\n";
436
+ echo 'data: ' . wp_json_encode( $data ) . "\n\n";
437
+
438
+ // Extra padding.
439
+ echo ':' . str_repeat( ' ', 2048 ) . "\n\n";
440
+
441
+ flush();
442
+ }
443
+
444
+ }
445
+
446
+ Astra_WXR_Importer::instance();
languages/astra-sites.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Astra Starter Sites package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Astra Starter Sites 1.3.10\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-sites\n"
7
- "POT-Creation-Date: 2019-05-13 08:30:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the same license as the Astra Starter Sites package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Astra Starter Sites 1.3.11\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-sites\n"
7
+ "POT-Creation-Date: 2019-05-13 09:46:15+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://wpastra.com/pro/
4
  Tags: Elementor,Beaver Builder,Templates,Gutenberg,Astra Starter Sites
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
- Tested up to: 5.1.1
8
- Stable tag: 1.3.10
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -117,6 +117,9 @@ We are open to suggestions and would love to work on topics that our users are l
117
 
118
  == Changelog ==
119
 
 
 
 
120
  v1.3.10 - 13-May-2019
121
  - Improvement: Added LarnDash plugin support for LarnDash demos.
122
  - Fix: SVG images are not importing in media library.
4
  Tags: Elementor,Beaver Builder,Templates,Gutenberg,Astra Starter Sites
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
+ Tested up to: 5.2
8
+ Stable tag: 1.3.11
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
117
 
118
  == Changelog ==
119
 
120
+ v1.3.11 - 13-May-2019
121
+ - Improvement: Added compatibility to WordPress 5.2.
122
+
123
  v1.3.10 - 13-May-2019
124
  - Improvement: Added LarnDash plugin support for LarnDash demos.
125
  - Fix: SVG images are not importing in media library.