class-ld-setup-wizard.php
23.2 KB
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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
<?php
/**
* LearnDash class for displaying the setup wizard.
*
* @package LearnDash
* @since 4.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'LearnDash_Setup_Wizard' ) ) {
/**
* Setup wizard class.
*/
class LearnDash_Setup_Wizard {
/**
* The opened status, can be completed, ongoing or closed.
*/
const STATUS_KEY = 'learndash_setup_wizard_status';
const STATUS_COMPLETED = 'completed';
const STATUS_ONGOING = 'ongoing';
const STATUS_CLOSED = 'closed';
const DATA_KEY = 'learndash_setup_wizard';
const CERTIFICATE_BUILDER_SLUG = 'learndash-certificate-builder/learndash-certificate-builder.php';
const COURSE_GRID_SLUG = 'learndash-course-grid/learndash_course_grid.php';
const WOOCOMMERCE_SLUG = 'woocommerce/woocommerce.php';
const LEARNDASH_WOOCOMMERCE_SLUG = 'learndash-woocommerce/learndash_woocommerce.php';
const HANDLE = 'learndash-setup-wizard';
const LICENSE_KEY = 'nss_plugin_license_sfwd_lms';
const LICENSE_EMAIL_KEY = 'nss_plugin_license_email_sfwd_lms';
const ADMIN_REDIRECT_PAGE = 'admin.php?page=learndash-setup';
const FINAL_ADMIN_REDIRECT_PAGE = 'admin.php?page=learndash-setup';
/**
* The single instance of the class.
*/
public function __construct() {
if ( ! is_admin() ) {
return;
}
add_action( 'learndash_activated', array( $this, 'set_redirect_flag' ) );
add_action( 'admin_init', array( $this, 'redirect_after_activation' ), 1 );
add_action( 'admin_menu', array( $this, 'register_menu' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
add_action( 'admin_init', array( $this, 'dismiss' ) );
add_action( 'wp_ajax_learndash_setup_wizard_verify_license', array( $this, 'verify_license' ) );
add_action( 'wp_ajax_learndash_setup_wizard_save_data', array( $this, 'save_data' ) );
add_action( 'wp_ajax_learndash_finalize', array( $this, 'finalize_setup' ) );
add_action( 'admin_post_stripe_connect_wizard_process', array( $this, 'enable_stripe_connect_and_redirect' ) );
}
/**
* Enable stripe connect and then redirect to the wizard again.
*/
public function enable_stripe_connect_and_redirect() {
// enable stripe connect.
if ( LearnDash_Settings_Section_Stripe_Connect::is_stripe_connected() ) {
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Stripe_Connect', 'enabled', 'yes' );
}
// force update wizard data.
$this->update_data( 'charge', 'yes' );
$this->update_data( 'charge_method', 'stripe' );
learndash_safe_redirect( admin_url( 'admin.php?page=' . self::HANDLE ) );
}
/**
* Check when we need to show the wizard and set an option for that.
*
* @since 4.5.0
*
* @return void
*/
public function set_redirect_flag() {
if ( ! $this->should_display() ) {
return;
}
update_option( 'learndash_setup_wizard_redirect', true );
}
/**
* Redirect to the setup wizard after an activation.
*/
public function redirect_after_activation() {
$should_redirect = get_option( 'learndash_setup_wizard_redirect' );
if ( ! $should_redirect ) {
return;
}
delete_option( 'learndash_setup_wizard_redirect' );
learndash_safe_redirect( admin_url( 'admin.php?page=' . self::HANDLE ) );
}
/**
* Dismiss
*/
public function dismiss() {
if ( ! isset( $_GET['page'] ) || ! isset( $_GET['dismiss'] ) || ! isset( $_GET['nonce'] ) ) {
return;
}
if ( self::HANDLE !== sanitize_text_field( wp_unslash( $_GET['page'] ) ) ) {
return;
}
$nonce = sanitize_text_field( wp_unslash( $_GET['nonce'] ) );
if ( ! wp_verify_nonce( $nonce, 'ld_setup_wizard_dismiss' ) ) {
return;
}
update_option( self::STATUS_KEY, self::STATUS_CLOSED );
learndash_safe_redirect( admin_url( self::ADMIN_REDIRECT_PAGE ) );
}
/**
* Returns the redirect URL after the wizard is completed.
*
* @since 4.2.0
*
* @return string The redirect URL.
*/
private function get_completed_redirect_url(): string {
/**
* Filter the URL to redirect to after the setup wizard is completed.
*
* @since 4.1.2
*
* @param string $url The URL to redirect to.
*/
return apply_filters( 'learndash_setup_wizard_completed_redirect_url', admin_url( self::FINAL_ADMIN_REDIRECT_PAGE ) );
}
/**
* Ajax endpoint for finalize the setup.
*/
public function finalize_setup() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : '';
if ( empty( $nonce ) ) {
wp_send_json_error();
}
if ( ! wp_verify_nonce( $nonce, 'ld_setup_wizard_finalize' ) ) {
wp_send_json_error();
}
/**
* React data.
*
* @var array $data
*/
$data = isset( $_POST['data'] ) ? wp_unslash( $_POST['data'] ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
$done = false;
switch ( $data['step'] ) {
case 'save_default_currency':
LearnDash_Settings_Section::set_section_settings_all(
'LearnDash_Settings_Section_Payments_Defaults',
array(
'country' => $data['currency_country'],
'currency' => $data['currency'],
)
);
break;
case 'create_registration_pages':
// enable anyone can register option and create registration pages.
update_option( 'users_can_register', true );
$this->create_registration_pages();
$this->create_profile_page();
break;
case 'process_course_listing':
// download and setup course grid, create course listing page.
if ( 'multiple' === $data['courses_amount'] ) {
$this->create_courses_listing_page();
}
// install course grid plugin.
if ( 'true' === $data['course_grid'] ) {
$ret = $this->maybe_install_a_plugin( self::COURSE_GRID_SLUG );
if ( true === $ret ) {
activate_plugin( self::COURSE_GRID_SLUG );
}
}
break;
case 'process_certificate_builder':
// install certificate builder plugin.
if ( 'true' === $data['certificate_builder'] ) {
$ret = $this->maybe_install_a_plugin( self::CERTIFICATE_BUILDER_SLUG );
if ( true === $ret ) {
activate_plugin( self::CERTIFICATE_BUILDER_SLUG );
}
}
break;
case 'process_woo':
// install woocommerce plugin and learndash add-on.
if ( 'true' === $data['woocommerce'] ) {
$ret = $this->maybe_install_a_plugin( self::WOOCOMMERCE_SLUG );
if ( true === $ret ) {
activate_plugin( self::WOOCOMMERCE_SLUG );
}
$ret = $this->maybe_install_a_plugin( self::LEARNDASH_WOOCOMMERCE_SLUG );
if ( true === $ret ) {
activate_plugin( self::LEARNDASH_WOOCOMMERCE_SLUG );
}
}
break;
case 'update_settings':
// user from email address.
$from_email = 'yes' === $data['use_registered_email'] ? $data['email'] : filter_var( $data['notification_email'], FILTER_VALIDATE_EMAIL );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Emails_Sender_Settings', 'from_email', $from_email );
// group access and management.
if ( is_array( $data['course_type'] ) && in_array( 'group_courses', $data['course_type'], true ) ) {
// optional group settings.
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Groups_CPT', 'public', isset( $data['public_group'] ) && $data['public_group'] ? 'yes' : '' );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Groups_CPT', 'has_archive', isset( $data['group_archive_page'] ) && $data['group_archive_page'] ? 'yes' : '' );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Groups_Group_Leader_User', 'manage_courses_enabled', isset( $data['manage_user'] ) && $data['manage_user'] ? 'yes' : '' );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Groups_Group_Leader_User', 'groups_autoenroll_managed', isset( $data['group_auto_enroll'] ) && $data['group_auto_enroll'] ? 'yes' : '' );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Groups_Group_Leader_User', 'courses_autoenroll', isset( $data['course_auto_enroll'] ) && $data['course_auto_enroll'] ? 'yes' : '' );
LearnDash_Settings_Section::set_section_setting( 'LearnDash_Settings_Section_Groups_Group_Leader_User', 'bypass_course_limits', isset( $data['bypass_course_limit'] ) && $data['bypass_course_limit'] ? 'yes' : '' );
}
update_option( self::STATUS_KEY, self::STATUS_COMPLETED );
$done = true;
break;
}
// preparing return data.
$result_data = array(
'completed' => $done,
);
if ( $done ) {
$result_data['redirect'] = $this->get_completed_redirect_url();
/**
* Action to be run after the setup wizard is completed.
*
* @since 4.1.2
*/
do_action( 'learndash_setup_wizard_completed' );
}
wp_send_json_success( $result_data );
}
/**
* Install a plugin
*
* @param string $slug The plugin slug.
*
* @return bool
*/
protected function maybe_install_a_plugin( string $slug ) {
$plugins = get_plugins();
if ( isset( $plugins[ $slug ] ) && is_plugin_inactive( $slug ) ) {
return true; // plugin is installed but not activated.
}
if ( ! function_exists( 'plugins_api' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
}
$slug = dirname( $slug );
$api = plugins_api(
'plugin_information',
array(
'slug' => $slug,
)
);
if ( is_wp_error( $api ) ) {
WP_DEBUG && error_log( $api->get_error_message() ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
return false;
}
$status = install_plugin_install_status( $api );
if ( 'install' === $status['status'] ) {
return $this->install( $slug );
}
return false;
}
/**
* Install a plugin
*
* @param string $slug Plugin slug.
*
* @return bool
*/
public function install( string $slug ) {
// prepare for install.
include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
include_once ABSPATH . 'wp-admin/includes/plugin.php';
include_once ABSPATH . 'wp-admin/includes/file.php';
$skin = new WP_Ajax_Upgrader_Skin();
/**
* Response object.
*
* @var object api
*/
$api = plugins_api(
'plugin_information',
array(
'slug' => sanitize_key( $slug ),
'fields' => array( 'sections' => false ),
)
);
if ( is_wp_error( $api ) ) {
WP_DEBUG && error_log( $api->get_error_message() ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
return false;
}
$upgrade_er = new Plugin_Upgrader( $skin );
$result = $upgrade_er->install( isset( $api->download_link ) ? $api->download_link : $api->download_url );
if ( is_wp_error( $result ) ) {
WP_DEBUG && error_log( $result->get_error_message() ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
return false;
}
return $result;
}
/**
* Create courses listing page
*
* @return void
*/
protected function create_courses_listing_page() {
wp_insert_post(
array(
'post_title' => __( 'Courses', 'learndash' ),
'post_content' => '<!-- wp:learndash/ld-course-list /-->',
'post_status' => 'publish',
'post_type' => 'page',
)
);
}
/**
* Create profile page during Setup Wizard completion.
*
* @since 4.4.1
*
* @return void
*/
protected function create_profile_page(): void {
wp_insert_post(
array(
'post_title' => __( 'Profile', 'learndash' ),
'post_content' => '<!-- wp:learndash/ld-profile /-->',
'post_status' => 'publish',
'post_type' => 'page',
)
);
}
/**
* Create registration, registration success, reset password and profile pages.
*/
protected function create_registration_pages() {
// Data for each of the pages being created.
$page_data = array(
array(
'identifier' => 'registration',
'title' => 'Registration',
'content' => '<!-- wp:learndash/ld-registration /-->',
),
array(
'identifier' => 'registration_success',
'title' => 'Registration Success',
'content' => '<!-- wp:paragraph --><p>' . __( 'Welcome', 'learndash' ) . '</p><!-- /wp:paragraph -->',
),
array(
'identifier' => 'reset_password',
'title' => 'Reset Password',
'content' => '<!-- wp:learndash/ld-reset-password {"width":""} /-->',
),
);
foreach ( $page_data as $page_values ) {
$page_id = LearnDash_Settings_Section::get_section_setting( 'LearnDash_Settings_Section_Registration_Pages', $page_values['identifier'] );
if ( ! empty( $page_id ) ) {
continue;
}
LearnDash_Settings_Section::set_section_setting(
'LearnDash_Settings_Section_Registration_Pages',
$page_values['identifier'],
wp_insert_post(
array(
'post_title' => $page_values['title'],
'post_content' => $page_values['content'],
'post_status' => 'publish',
'post_type' => 'page',
)
)
);
}
}
/**
* An ajax endpoint for saving wizard data. When the
* user move to next step, we will store the current state in the db.
*/
public function save_data() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : '';
if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, 'ld_setup_wizard_save_data' ) ) {
wp_send_json_error();
}
$data = isset( $_POST['data'] )
? $this->sanitize_text_fields( (array) wp_unslash( $_POST['data'] ) ) // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
: array();
foreach ( $data as $key => $val ) {
$this->update_data( $key, $val );
}
update_option( self::STATUS_KEY, self::STATUS_ONGOING );
}
/**
* Ajax endpoint, for trigger a request to validate the license key.
*/
public function verify_license() {
$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : '';
if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, 'ld_setup_wizard_verify_license' ) ) {
wp_send_json_error();
}
$email = isset( $_POST['email'] ) ? trim( sanitize_text_field( wp_unslash( $_POST['email'] ) ) ) : '';
$license_key = isset( $_POST['license_key'] ) ? trim( sanitize_text_field( wp_unslash( $_POST['license_key'] ) ) ) : '';
if ( ! filter_var( $email, FILTER_VALIDATE_EMAIL ) || empty( $license_key ) ) {
wp_send_json_error();
}
update_option( self::LICENSE_KEY, $license_key );
update_option( self::LICENSE_EMAIL_KEY, $email );
$license_status = false;
if ( learndash_is_learndash_hub_active() ) {
$license_status = learndash_validate_hub_license( $email, $license_key );
} else {
$updater_sfwd_lms = learndash_get_updater_instance( true );
if ( ( $updater_sfwd_lms ) && ( is_a( $updater_sfwd_lms, 'nss_plugin_updater_sfwd_lms' ) ) ) {
/**
* Remove the time to check timestamp. Within the getRemote_license() method
* is calls time_to_recheck_license() which uses this option to determine if
* the license needs to be checked again.
*/
delete_option( 'nss_plugin_check_sfwd_lms' );
$license_status = $updater_sfwd_lms->getRemote_license();
}
// The return from getRemote_license() is literally "1" (string) for valid. Anything else is invalid.
if ( '1' !== $license_status ) {
wp_send_json_error();
}
// license is valid.
$license_status = true;
}
if ( ! $license_status ) {
wp_send_json_error();
}
// Store the data.
update_option( self::STATUS_KEY, self::STATUS_ONGOING );
wp_send_json_success();
}
/**
*
* Update the wizard data.
*
* @param string $key Data key.
* @param mixed $value Data value.
* @param string $option_name Option name. Default: 'learndash_setup_wizard'.
*/
private function update_data( string $key, $value, string $option_name = self::DATA_KEY ): void {
$data = get_option( $option_name, array() );
if ( ! is_array( $data ) ) {
$data = array();
}
$data[ $key ] = $value;
update_option( $option_name, $data );
}
/**
* Get the list of scenes.
*
* @return array The list of scenes. [scene_key => scene_data].
*/
private function get_scenes(): array {
$available_scenes = array(
'step-0' => esc_html__( 'Welcome', 'learndash' ),
'step-1' => esc_html__( 'Your Info', 'learndash' ),
'step-2' => esc_html__( 'Your Courses', 'learndash' ),
'step-3' => esc_html__( 'Payment', 'learndash' ),
'step-4' => esc_html__( 'Summary', 'learndash' ),
);
/**
* Filters the available scenes for the setup wizard.
*
* @since 4.2.0
*
* @param array $scenes The list of scenes. [scene_key => scene_description].
*/
$available_scenes = apply_filters( 'learndash_setup_wizard_available_scenes', $available_scenes );
// make sure that we have at least one scene.
if ( empty( $available_scenes ) ) {
$available_scenes = array( 'step-0' => esc_html__( 'Welcome', 'learndash' ) );
}
$scenes = array();
$keys = array_keys( $available_scenes );
$pos = 0;
foreach ( $available_scenes as $scene_key => $scene_description ) {
$scenes[ $scene_key ] = array(
'description' => $scene_description,
'next' => isset( $keys[ $pos + 1 ] ) ? $keys[ $pos + 1 ] : '',
'prev' => isset( $keys[ $pos - 1 ] ) ? $keys[ $pos - 1 ] : '',
);
$pos++;
}
return $scenes;
}
/**
* Register the script
*/
public function enqueue_scripts() {
$screen = get_current_screen();
if ( is_object( $screen ) && 'toplevel_page_learndash-setup-wizard' === $screen->id ) {
wp_register_style(
self::HANDLE,
LEARNDASH_LMS_PLUGIN_URL . 'assets/js/setup-wizard/dist/css/style.css',
array(),
constant( 'SCRIPT_DEBUG' ) === true ? time() : LEARNDASH_VERSION
);
wp_enqueue_style( self::HANDLE );
wp_register_script(
self::HANDLE,
LEARNDASH_LMS_PLUGIN_URL . 'assets/js/setup-wizard/dist/js/index.js',
array( 'react', 'react-dom', 'wp-i18n' ),
constant( 'SCRIPT_DEBUG' ) === true ? time() : LEARNDASH_VERSION,
true
);
$data = get_option( self::DATA_KEY );
$currency_code = learndash_get_currency_code();
$currency_country = LearnDash_Settings_Section::get_section_setting( 'LearnDash_Settings_Section_Payments_Defaults', 'country' ) ?? '';
// scenes processing.
$scenes = $this->get_scenes();
$current_scene = isset( $data['scene'] ) && isset( $scenes[ $data['scene'] ] ) ? $data['scene'] : array_keys( $scenes )[0];
wp_localize_script(
self::HANDLE,
'ldSetupWizard',
array(
'urls' => array(
'assets' => LEARNDASH_LMS_PLUGIN_URL . 'assets/js/setup-wizard/dist/',
'dismiss' => admin_url(
wp_sprintf(
'admin.php?page=%s&dismiss=true&nonce=%s',
self::HANDLE,
wp_create_nonce( 'ld_setup_wizard_dismiss' )
)
),
'support' => 'https://support.learndash.com',
'stripe_connect' => LearnDash_Settings_Section_Stripe_Connect::generate_connect_url( admin_url( 'admin-post.php?action=stripe_connect_wizard_process' ) ),
'iso_4217' => 'https://en.wikipedia.org/wiki/ISO_4217#Active_codes',
'no_step_url' => $this->get_completed_redirect_url(),
),
'nonces' => array(
'verify' => wp_create_nonce( 'ld_setup_wizard_verify_license' ),
'save' => wp_create_nonce( 'ld_setup_wizard_save_data' ),
'finalize' => wp_create_nonce( 'ld_setup_wizard_finalize' ),
),
'data' => array(
'scenes' => $scenes,
'scene' => $current_scene,
'email' => $data['email'] ?? get_option( self::LICENSE_EMAIL_KEY, '' ),
'license_key' => $data['license_key'] ?? get_option( self::LICENSE_KEY, '' ),
'use_registered_email' => $data['use_registered_email'] ?? 'yes',
'notification_email' => $data['notification_email'] ?? '',
'license_validated' => $data['license_validated'] ?? 'no',
'courses_amount' => $data['courses_amount'] ?? 'single',
'course_type' => $data['course_type'] ?? array(),
'group_access' => $data['group_access'] ?? 'no',
'group_leader' => $data['group_leader'] ?? 'no',
'charge' => $data['charge'] ?? 'no',
'charge_method' => $data['charge_method'] ?? '',
'currency' => ! empty( $currency_code ) ? $currency_code : '',
'currency_country' => ! empty( $currency_country ) ? $currency_country : '',
'currency_select2_default' => ! empty( $currency_country ) ? ucwords( mb_strtolower( $currency_country ) ) . ' (' . learndash_get_currency_symbol( $currency_code ) . ') ' : '',
'stripe_connected' => LearnDash_Settings_Section_Stripe_Connect::is_stripe_connected(),
'stripe_webhook_notice' => wp_kses_post( LearnDash_Settings_Section_Stripe_Connect::get_stripe_webhook_notice() ),
),
'plugins' => array(
'certificate_builder' => is_plugin_active( self::CERTIFICATE_BUILDER_SLUG ),
'course_grid' => is_plugin_active( self::COURSE_GRID_SLUG ),
'woocommerce' => is_plugin_active( self::WOOCOMMERCE_SLUG ),
),
'currency_codes' => array(
'list' => learndash_currency_codes_list(),
),
)
);
wp_enqueue_script( self::HANDLE );
}
}
/**
* Output the html root for react app.
*/
public function render() {
?>
<div id="learndash-setup-wizard"></div>
<?php
}
/**
* Register the admin page to the tree.
*/
public function register_menu() {
add_menu_page(
__( 'Setup Wizard', 'learndash' ),
__( 'Setup Wizard', 'learndash' ),
LEARNDASH_ADMIN_CAPABILITY_CHECK,
self::HANDLE,
array( $this, 'render' )
);
// Hide the admin menu item, the page stays available.
remove_menu_page( self::HANDLE );
}
/**
* If there is no license key stored in the database, then we should show up the wizard
*
* @return bool
*/
protected function should_display(): bool {
$should_display = false;
$wizard_status = get_option( self::STATUS_KEY );
// The wizard is in progress, but closed by an accident or something like that.
if ( self::STATUS_ONGOING === $wizard_status ) {
$should_display = true;
}
if (
empty( get_option( self::LICENSE_KEY ) ) ||
empty( get_option( self::LICENSE_EMAIL_KEY ) )
) {
$should_display = true;
}
/**
* Filters whether the setup wizard should be displayed or not.
*
* @since 4.2.0
*
* @param bool $should_display Whether the setup wizard should be displayed or not.
*/
return apply_filters( 'learndash_setup_wizard_should_display', $should_display );
}
/**
* Sanitize an array recursively.
*
* @param array $array Array.
*
* @return array
*/
private function sanitize_text_fields( array $array ): array {
foreach ( $array as &$value ) {
$value = is_array( $value )
? $this->sanitize_text_fields( $value )
: sanitize_text_field( $value );
}
return $array;
}
}
}