forked from awesomemotive/one-click-demo-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathone-click-demo-import.php
681 lines (553 loc) · 23.4 KB
/
one-click-demo-import.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
<?php
/*
Plugin Name: One Click Demo Import
Plugin URI: https://wordpress.org/plugins/one-click-demo-import/
Description: Import your content, widgets and theme settings with one click. Theme authors! Enable simple demo import for your theme demo data.
Version: 1.1.3
Author: ProteusThemes
Author URI: http://www.proteusthemes.com
License: GPL3
License URI: http://www.gnu.org/licenses/gpl.html
Text Domain: pt-ocdi
*/
// Block direct access to the main plugin file.
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
// Path/URL to root of this plugin, with trailing slash.
define( 'PT_OCDI_PATH', plugin_dir_path( __FILE__ ) );
define( 'PT_OCDI_URL', plugin_dir_url( __FILE__ ) );
// Current version of the plugin.
define( 'PT_OCDI_VERSION', '1.1.3' );
// Include files.
require PT_OCDI_PATH . 'inc/class-ocdi-helpers.php';
require PT_OCDI_PATH . 'inc/class-ocdi-importer.php';
require PT_OCDI_PATH . 'inc/class-ocdi-widget-importer.php';
require PT_OCDI_PATH . 'inc/class-ocdi-customizer-importer.php';
require PT_OCDI_PATH . 'inc/class-ocdi-logger.php';
/**
* One Click Demo Import class, so we don't have to worry about namespaces.
*/
class PT_One_Click_Demo_Import {
/**
* @var $instance the reference to *Singleton* instance of this class
*/
private static $instance;
/**
* Private variables used throughout the plugin.
*/
private $importer, $plugin_page, $import_files, $logger, $log_file_path, $selected_index, $selected_import_files, $microtime, $frontend_error_messages, $ajax_call_number;
/**
* Returns the *Singleton* instance of this class.
*
* @return PT_One_Click_Demo_Import the *Singleton* instance.
*/
public static function getInstance() {
if ( null === static::$instance ) {
static::$instance = new static();
}
return static::$instance;
}
/**
* Class construct function, to initiate the plugin.
* Protected constructor to prevent creating a new instance of the
* *Singleton* via the `new` operator from outside of this class.
*/
protected function __construct() {
// Actions.
add_action( 'admin_menu', array( $this, 'create_plugin_page' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
add_action( 'wp_ajax_ocdi_import_demo_data', array( $this, 'import_demo_data_ajax_callback' ) );
add_action( 'after_setup_theme', array( $this, 'setup_plugin_with_filter_data' ) );
add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
}
/**
* Private clone method to prevent cloning of the instance of the *Singleton* instance.
*
* @return void
*/
private function __clone() {}
/**
* Private unserialize method to prevent unserializing of the *Singleton* instance.
*
* @return void
*/
private function __wakeup() {}
/**
* Creates the plugin page and a submenu item in WP Appearance menu.
*/
public function create_plugin_page() {
$plugin_page_setup = apply_filters( 'pt-ocdi/plugin_page_setup', array(
'parent_slug' => 'themes.php',
'page_title' => esc_html__( 'One Click Demo Import' , 'pt-ocdi' ),
'menu_title' => esc_html__( 'Import Demo Data' , 'pt-ocdi' ),
'capability' => 'import',
'menu_slug' => 'pt-one-click-demo-import',
)
);
$this->plugin_page = add_submenu_page( $plugin_page_setup['parent_slug'], $plugin_page_setup['page_title'], $plugin_page_setup['menu_title'], $plugin_page_setup['capability'], $plugin_page_setup['menu_slug'], array( $this, 'display_plugin_page' ) );
}
/**
* Plugin page display.
*/
public function display_plugin_page() {
?>
<div class="ocdi wrap">
<h2 class="ocdi__title"><span class="dashicons dashicons-download"></span><?php esc_html_e( 'One Click Demo Import', 'pt-ocdi' ); ?></h2>
<?php
// Display warrning if PHP safe mode is enabled, since we wont be able to change the max_execution_time.
if ( ini_get( 'safe_mode' ) ) {
printf(
esc_html__( '%sWarning: your server is using %sPHP safe mode%s. This means that you might experience server timeout errors.%s', 'pt-ocdi' ),
'<div class="notice notice-warning"><p>',
'<strong>',
'</strong>',
'</p></div>'
);
}
// Start output buffer for displaying the plugin intro text.
ob_start();
?>
<div class="ocdi__intro-text">
<p>
<?php esc_html_e( 'Importing demo data (post, pages, images, theme settings, ...) is the easiest way to setup your theme. It will allow you to quickly edit everything instead of creating content from scratch. When you import the data, the following things might happen:', 'pt-ocdi' ); ?>
</p>
<ul>
<li><?php esc_html_e( 'No existing posts, pages, categories, images, custom post types or any other data will be deleted or modified.', 'pt-ocdi' ); ?></li>
<li><?php esc_html_e( 'Posts, pages, images, widgets and menus will get imported.', 'pt-ocdi' ); ?></li>
<li><?php esc_html_e( 'Please click "Import Demo Data" button only once and wait, it can take a couple of minutes.', 'pt-ocdi' ); ?></li>
</ul>
</div>
<div class="ocdi__intro-text">
<p><?php esc_html_e( 'Before you begin, make sure all the required plugins are activated.', 'pt-ocdi' ); ?></p>
</div>
<?php
$plugin_intro_text = ob_get_clean();
// Display the plugin intro text (can be replaced with custom text through the filter below).
echo wp_kses_post( apply_filters( 'pt-ocdi/plugin_intro_text', $plugin_intro_text ) );
?>
<?php if ( empty( $this->import_files ) ) : ?>
<div class="notice notice-info below-h2">
<p>
<?php esc_html_e( 'There are no predefined import files available in this theme. Please upload the import files manually!', 'pt-ocdi' ); ?>
</p>
</div>
<div>
<div class="ocdi__single-file-upload-container">
<h3><label for="content-file-upload"><?php esc_html_e( 'Choose a XML file for content import:', 'pt-ocdi' ); ?></label></h3>
<input id="ocdi__content-file-upload" type="file" name="content-file-upload">
</div>
<div class="ocdi__single-file-upload-container">
<h3><label for="widget-file-upload"><?php esc_html_e( 'Choose a WIE or JSON file for widget import:', 'pt-ocdi' ); ?></label> <span><?php esc_html_e( '(*optional)', 'pt-ocdi' ); ?></span></h3>
<input id="ocdi__widget-file-upload" type="file" name="widget-file-upload">
</div>
<div class="ocdi__single-file-upload-container">
<h3><label for="customizer-file-upload"><?php esc_html_e( 'Choose a DAT file for customizer import:', 'pt-ocdi' ); ?></label> <span><?php esc_html_e( '(*optional)', 'pt-ocdi' ); ?></span></h3>
<input id="ocdi__customizer-file-upload" type="file" name="customizer-file-upload">
</div>
</div>
<?php elseif ( 1 < count( $this->import_files ) ) : ?>
<div class="ocdi__multi-select-import">
<h3><?php esc_html_e( 'Choose which demo you want to import:', 'pt-ocdi' ); ?></h3>
<select id="ocdi__demo-import-files">
<?php foreach ( $this->import_files as $index => $import_file ) : ?>
<option value="<?php echo esc_attr( $index ); ?>">
<?php echo esc_html( $import_file['import_file_name'] ); ?>
</option>
<?php endforeach; ?>
</select>
<?php
// Check if at least one preview image is defined, so we can prepare the structure for display.
$preview_image_is_defined = false;
foreach ( $this->import_files as $import_file ) {
if ( isset( $import_file['import_preview_image_url'] ) ) {
$preview_image_is_defined = true;
break;
}
}
if ( $preview_image_is_defined ) :
?>
<div>
<p><?php esc_html_e( 'Import preview:', 'pt-ocdi' ); ?></p>
<p class="ocdi__demo-import-preview-image-message js-ocdi-preview-image-message">
<?php
if ( ! isset( $this->import_files[0]['import_preview_image_url'] ) ) {
esc_html_e( 'No preview image defined for this import.', 'pt-ocdi' );
}
// Leave the img tag below and the p tag above available for later changes via JS.
?>
</p>
<img id="ocdi__demo-import-preview-image" class="js-ocdi-preview-image" src="<?php echo ! empty( $this->import_files[0]['import_preview_image_url'] ) ? esc_url( $this->import_files[0]['import_preview_image_url'] ) : ''; ?>">
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="ocdi__demo-import-notice js-ocdi-demo-import-notice">
<?php
if ( is_array( $this->import_files ) && ! empty( $this->import_files[0]['import_notice'] ) ) {
echo wp_kses_post( $this->import_files[0]['import_notice'] );
}
?>
</div>
<p>
<button class="ocdi__button button-primary js-ocdi-import-data"><?php esc_html_e( 'Import Demo Data', 'pt-ocdi' ); ?></button>
</p>
<p class="ocdi__ajax-loader js-ocdi-ajax-loader">
<span class="spinner"></span> <?php esc_html_e( 'Importing, please wait!', 'pt-ocdi' ); ?>
</p>
<div class="ocdi__response js-ocdi-ajax-response"></div>
</div>
<?php
}
/**
* Enqueue admin scripts (JS and CSS)
*
* @param string $hook holds info on which admin page you are currently loading.
*/
public function admin_enqueue_scripts( $hook ) {
// Enqueue the scripts only on the plugin page.
if ( $this->plugin_page === $hook ) {
wp_enqueue_script( 'ocdi-main-js', PT_OCDI_URL . 'assets/js/main.js' , array( 'jquery', 'jquery-form' ), PT_OCDI_VERSION );
wp_localize_script( 'ocdi-main-js', 'ocdi',
array(
'ajax_url' => admin_url( 'admin-ajax.php' ),
'ajax_nonce' => wp_create_nonce( 'ocdi-ajax-verification' ),
'import_files' => $this->import_files,
'texts' => array(
'missing_preview_image' => esc_html__( 'No preview image defined for this import.', 'pt-ocdi' ),
),
)
);
wp_enqueue_style( 'ocdi-main-css', PT_OCDI_URL . 'assets/css/main.css', array() , PT_OCDI_VERSION );
}
}
/**
* Main AJAX callback function for:
* 1. prepare import files (uploaded or predefined via filters)
* 2. import content
* 3. before widgets import setup (optional)
* 4. import widgets (optional)
* 5. import customizer options (optional)
* 6. after import setup (optional)
*/
public function import_demo_data_ajax_callback() {
// Try to update PHP memory limit (so that it does not run out of it).
ini_set( 'memory_limit', apply_filters( 'pt-ocdi/import_memory_limit', '350M' ) );
// Verify if the AJAX call is valid (checks nonce and current_user_can).
OCDI_Helpers::verify_ajax_call();
// Is this a new AJAX call to continue the previous import?
$use_existing_importer_data = $this->get_importer_data();
if ( ! $use_existing_importer_data ) {
// Set the AJAX call number.
$this->ajax_call_number = empty( $this->ajax_call_number ) ? 0 : $this->ajax_call_number;
// Error messages displayed on front page.
$this->frontend_error_messages = '';
// Create a date and time string to use for demo and log file names.
$demo_import_start_time = date( apply_filters( 'pt-ocdi/date_format_for_file_names', 'Y-m-d__H-i-s' ) );
// Define log file path.
$this->log_file_path = OCDI_Helpers::get_log_path( $demo_import_start_time );
// Get selected file index or set it to 0.
$this->selected_index = empty( $_POST['selected'] ) ? 0 : absint( $_POST['selected'] );
/**
* 1. Prepare import files.
* Manually uploaded import files or predefined import files via filter: pt-ocdi/import_files
*/
if ( ! empty( $_FILES ) ) { // Using manual file uploads?
// Get paths for the uploaded files.
$this->selected_import_files = OCDI_Helpers::process_uploaded_files( $_FILES, $this->log_file_path );
// Set the name of the import files, because we used the uploaded files.
$this->import_files[ $this->selected_index ]['import_file_name'] = esc_html__( 'Manually uploaded files', 'pt-ocdi' );
}
elseif ( ! empty( $this->import_files[ $this->selected_index ] ) ) { // Use predefined import files from wp filter: pt-ocdi/import_files.
// Download the import files (content and widgets files) and save it to variable for later use.
$this->selected_import_files = OCDI_Helpers::download_import_files(
$this->import_files[ $this->selected_index ],
$demo_import_start_time
);
// Check Errors.
if ( is_wp_error( $this->selected_import_files ) ) {
// Write error to log file and send an AJAX response with the error.
OCDI_Helpers::log_error_and_send_ajax_response(
$this->selected_import_files->get_error_message(),
$this->log_file_path,
esc_html__( 'Downloaded files', 'pt-ocdi' )
);
}
// Add this message to log file.
$log_added = OCDI_Helpers::append_to_file(
sprintf(
__( 'The import files for: %s were successfully downloaded!', 'pt-ocdi' ),
$this->import_files[ $this->selected_index ]['import_file_name']
) . OCDI_Helpers::import_file_info( $this->selected_import_files ),
$this->log_file_path,
esc_html__( 'Downloaded files' , 'pt-ocdi' )
);
}
else {
// Send JSON Error response to the AJAX call.
wp_send_json( esc_html__( 'No import files specified!', 'pt-ocdi' ) );
}
}
/**
* 2. Import content.
* Returns any errors greater then the "error" logger level, that will be displayed on front page.
*/
$this->frontend_error_messages .= $this->import_content( $this->selected_import_files['content'] );
/**
* 3. Before widgets import setup.
*/
$action = 'pt-ocdi/before_widgets_import';
if ( ( false !== has_action( $action ) ) && empty( $this->frontend_error_messages ) ) {
// Run the before_widgets_import action to setup other settings.
$this->do_import_action( $action, $this->import_files[ $this->selected_index ] );
}
/**
* 4. Import widgets.
*/
if ( ! empty( $this->selected_import_files['widgets'] ) && empty( $this->frontend_error_messages ) ) {
$this->import_widgets( $this->selected_import_files['widgets'] );
}
/**
* 5. Import customize options.
*/
if ( ! empty( $this->selected_import_files['customizer'] ) && empty( $this->frontend_error_messages ) ) {
$this->import_customizer( $this->selected_import_files['customizer'] );
}
/**
* 6. After import setup.
*/
$action = 'pt-ocdi/after_import';
if ( ( false !== has_action( $action ) ) && empty( $this->frontend_error_messages ) ) {
// Run the after_import action to setup other settings.
$this->do_import_action( $action, $this->import_files[ $this->selected_index ] );
}
// Display final messages (success or error messages).
if ( empty( $this->frontend_error_messages ) ) {
$response['message'] = sprintf(
__( '%1$s%3$sThat\'s it, all done!%4$s%2$sThe demo import has finished. Please check your page and make sure that everything has imported correctly. If it did, you can deactivate the %3$sOne Click Demo Import%4$s plugin, because it has done its job.%5$s', 'pt-ocdi' ),
'<div class="notice notice-success"><p>',
'<br>',
'<strong>',
'</strong>',
'</p></div>'
);
}
else {
$response['message'] = $this->frontend_error_messages . '<br>';
$response['message'] .= sprintf(
__( '%1$sThe demo import has finished, but there were some import errors.%2$sMore details about the errors can be found in this %3$s%5$slog file%6$s%4$s%7$s', 'pt-ocdi' ),
'<div class="notice notice-error"><p>',
'<br>',
'<strong>',
'</strong>',
'<a href="' . OCDI_Helpers::get_log_url( $this->log_file_path ) .'" target="_blank">',
'</a>',
'</p></div>'
);
}
wp_send_json( $response );
}
/**
* Import content from an WP XML file.
*
* @param string $import_file_path path to the import file.
*/
private function import_content( $import_file_path ) {
$this->microtime = microtime( true );
// This should be replaced with multiple AJAX calls (import in smaller chunks)
// so that it would not come to the Internal Error, because of the PHP script timeout.
// Also this function has no effect when PHP is running in safe mode
// http://php.net/manual/en/function.set-time-limit.php.
// Increase PHP max execution time.
set_time_limit( apply_filters( 'pt-ocdi/set_time_limit_for_demo_data_import', 300 ) );
// Disable import of authors.
add_filter( 'wxr_importer.pre_process.user', '__return_false' );
// Check, if we need to send another AJAX request and set the importing author to the current user.
add_filter( 'wxr_importer.pre_process.post', array( $this, 'new_ajax_request_maybe' ) );
// Disables generation of multiple image sizes (thumbnails) in the content import step.
if ( ! apply_filters( 'pt-ocdi/regenerate_thumbnails_in_content_import', true ) ) {
add_filter( 'intermediate_image_sizes_advanced',
function() {
return null;
}
);
}
// Import content.
if ( ! empty( $import_file_path ) ) {
ob_start();
$this->importer->import( $import_file_path );
$message = ob_get_clean();
// Add this message to log file.
$log_added = OCDI_Helpers::append_to_file(
$message . PHP_EOL . esc_html__( 'Max execution time after content import = ' , 'pt-ocdi' ) . ini_get( 'max_execution_time' ),
$this->log_file_path,
esc_html__( 'Importing content' , 'pt-ocdi' )
);
}
// Delete content importer data for current import from DB.
delete_transient( 'ocdi_importer_data' );
// Return any error messages for the front page output (errors, critical, alert and emergency level messages only).
return $this->logger->error_output;
}
/**
* Import widgets from WIE or JSON file.
*
* @param string $widget_import_file_path path to the widget import file.
*/
private function import_widgets( $widget_import_file_path ) {
// Widget import results.
$results = array();
// Create an instance of the Widget Importer.
$widget_importer = new OCDI_Widget_Importer();
// Import widgets.
if ( ! empty( $widget_import_file_path ) ) {
// Import widgets and return result.
$results = $widget_importer->import_widgets( $widget_import_file_path );
}
// Check for errors.
if ( is_wp_error( $results ) ) {
// Write error to log file and send an AJAX response with the error.
OCDI_Helpers::log_error_and_send_ajax_response(
$results->get_error_message(),
$this->log_file_path,
esc_html__( 'Importing widgets', 'pt-ocdi' )
);
}
ob_start();
$widget_importer->format_results_for_log( $results );
$message = ob_get_clean();
// Add this message to log file.
$log_added = OCDI_Helpers::append_to_file(
$message,
$this->log_file_path,
esc_html__( 'Importing widgets' , 'pt-ocdi' )
);
}
/**
* Import customizer from a DAT file, generated by the Customizer Export/Import plugin.
*
* @param string $customizer_import_file_path path to the customizer import file.
*/
private function import_customizer( $customizer_import_file_path ) {
// Try to import the customizer settings.
$results = OCDI_Customizer_Importer::import_customizer_options( $customizer_import_file_path );
// Check for errors.
if ( is_wp_error( $results ) ) {
// Write error to log file and send an AJAX response with the error.
OCDI_Helpers::log_error_and_send_ajax_response(
$results->get_error_message(),
$this->log_file_path,
esc_html__( 'Importing customizer settings', 'pt-ocdi' )
);
}
// Add this message to log file.
$log_added = OCDI_Helpers::append_to_file(
esc_html__( 'Customizer settings import finished!', 'pt-ocdi' ),
$this->log_file_path,
esc_html__( 'Importing customizer settings' , 'pt-ocdi' )
);
}
/**
* Setup other things in the passed wp action.
*
* @param string $action the action name to be executed.
* @param array $selected_import with information about the selected import.
*/
private function do_import_action( $action, $selected_import ) {
ob_start();
do_action( $action, $selected_import );
$message = ob_get_clean();
// Add this message to log file.
$log_added = OCDI_Helpers::append_to_file(
$message,
$this->log_file_path,
$action
);
}
/**
* Check if we need to create a new AJAX request, so that server does not timeout.
*
* @param array $data current post data.
* @return array
*/
public function new_ajax_request_maybe( $data ) {
$time = microtime( true ) - $this->microtime;
// We should make a new ajax call, if the time is right.
if ( $time > apply_filters( 'pt-ocdi/time_for_one_ajax_call', 25 ) ) {
$this->ajax_call_number++;
$this->set_importer_data();
$response = array(
'status' => 'newAJAX',
'message' => 'Time for new AJAX request!: ' . $time,
);
// Add any output to the log file and clear the buffers.
$message = ob_get_clean();
// Add message to log file.
$log_added = OCDI_Helpers::append_to_file(
__( 'Completed AJAX call number: ' , 'pt-ocdi' ) . $this->ajax_call_number . PHP_EOL . $message,
$this->log_file_path,
''
);
wp_send_json( $response );
}
// Set importing author to the current user.
// Fixes the [WARNING] Could not find the author for ... log warning messages.
$current_user_obj = wp_get_current_user();
$data['post_author'] = $current_user_obj->user_login;
return $data;
}
/**
* Set current state of the content importer, so we can continue the import with new AJAX request.
*/
private function set_importer_data() {
$data = array(
'frontend_error_messages' => $this->frontend_error_messages,
'ajax_call_number' => $this->ajax_call_number,
'log_file_path' => $this->log_file_path,
'selected_index' => $this->selected_index,
'selected_import_files' => $this->selected_import_files,
);
$data = array_merge( $data, $this->importer->get_importer_data() );
set_transient( 'ocdi_importer_data', $data, 0.5 * HOUR_IN_SECONDS );
}
/**
* Get content importer data, so we can continue the import with this new AJAX request.
*/
private function get_importer_data() {
if ( $data = get_transient( 'ocdi_importer_data' ) ) {
$this->frontend_error_messages = empty( $data['frontend_error_messages'] ) ? '' : $data['frontend_error_messages'];
$this->ajax_call_number = empty( $data['ajax_call_number'] ) ? 1 : $data['ajax_call_number'];
$this->log_file_path = empty( $data['log_file_path'] ) ? '' : $data['log_file_path'];
$this->selected_index = empty( $data['selected_index'] ) ? 0 : $data['selected_index'];
$this->selected_import_files = empty( $data['selected_import_files'] ) ? array() : $data['selected_import_files'];
$this->importer->set_importer_data( $data );
return true;
}
return false;
}
/**
* Load the plugin textdomain, so that translations can be made.
*/
public function load_textdomain() {
load_plugin_textdomain( 'pt-ocdi', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
}
/**
* Get data from filters, after the theme has loaded and instantiate the importer.
*/
public function setup_plugin_with_filter_data() {
// Get info of import data files and filter it.
$this->import_files = OCDI_Helpers::validate_import_file_info( apply_filters( 'pt-ocdi/import_files', array() ) );
// Importer options array.
$importer_options = apply_filters( 'pt-ocdi/importer_options', array(
'fetch_attachments' => true,
) );
// Logger options for the logger used in the importer.
$logger_options = apply_filters( 'pt-ocdi/logger_options', array(
'logger_min_level' => 'warning',
) );
// Configure logger instance and set it to the importer.
$this->logger = new OCDI_Logger();
$this->logger->min_level = $logger_options['logger_min_level'];
// Create importer instance with proper parameters.
$this->importer = new OCDI_Importer( $importer_options, $this->logger );
}
}
$pt_one_click_demo_import = PT_One_Click_Demo_Import::getInstance();