PluginProbe
WP Synchro – The Ultimate WordPress Migration Tool / trunk
WP Synchro – The Ultimate WordPress Migration Tool vtrunk
1.16.1 1.16.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.10.0 1.11.0 1.11.1 1.11.2 1.11.3 1.11.4 1.11.5 1.12.0 1.13.0 1.14.0 1.15.0 1.2.0 1.3.0 1.3.1 1.3.2 All 45 releases
wpsynchro / src / Utilities / JSData / OnboardingData.php

OnboardingData.php in WP Synchro – The Ultimate WordPress Migration Tool trunk, at src/Utilities/JSData/OnboardingData.php

26 lines 793 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Class for providing data for onboarding help component
5 */
6
7 namespace WPSynchro\Utilities\JSData;
8
9 class OnboardingData
10 {
11 /**
12 * Load the JS data for onboarding help component
13 */
14 public function load()
15 {
16 $onboarding_localize = [
17 'introtext' => __('Need help getting started with WP Synchro?', 'wpsynchro'),
18 'text1' => __('Let us show you how to get started quickly and understand how WP Synchro works.', 'wpsynchro'),
19 'is_pro' => \WPSynchro\Utilities\CommonFunctions::isPremiumVersion(),
20 'accept' => __('Show me', 'wpsynchro'),
21 'decline' => __('Dismiss', 'wpsynchro'),
22 ];
23 wp_localize_script('wpsynchro_admin_js', 'wpsynchro_onboarding_help', $onboarding_localize);
24 }
25 }
26