PluginProbe ʕ •ᴥ•ʔ
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress / 4.12.0
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress v4.12.0
4.12.0 4.10.0 4.9.0 4.8.1 trunk 1.0 1.1 1.12.1 1.2.3 1.2.4 1.2.5 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.5 1.5.1 1.5.2 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.4.1 1.6.5 1.6.5.1 1.6.6 1.6.6.1 1.6.6.2 1.6.6.3 1.6.7 1.6.7.1 1.6.8 1.6.8.1 1.6.8.2 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.9.0 1.9.1 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.8.1 1.9.9 1.9.9.1 1.9.9.2 1.9.9.3 2.0 2.0.1 2.1 2.1.1 2.1.2 2.1.3 2.10 2.11 2.11.1 2.12 2.12.1 2.12.2 2.12.3 2.12.4 2.13 2.14 2.14.1 2.15 2.15.1 2.16 2.16.1 2.17 2.17.1 2.18 2.18.1 2.18.2 2.18.3 2.19 2.19.1 2.19.2 2.19.3 2.2 2.2.1 2.3 2.3.1 2.3.10 2.3.2 2.3.3 2.3.4 2.3.6 2.3.7 2.3.8 2.3.9 2.4 2.4.1 2.4.1.1 2.4.1.2 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5 2.5.1 2.5.2 2.6 2.6.1 2.6.2 2.6.3 2.6.4 2.7 2.7.1 2.7.2 2.8 2.9 2.9.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.1 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.3.0 4.3.1 4.3.2 4.3.3 4.3.4 4.7.5 4.7.6 4.7.7
custom-facebook-feed / admin / builder / templates / onboarding / configure-features.php
custom-facebook-feed / admin / builder / templates / onboarding Last commit date
add-source.php 2 weeks ago configure-features.php 2 weeks ago install-plugins.php 2 weeks ago success-page.php 2 weeks ago welcome.php 2 weeks ago
configure-features.php
82 lines
1 <div class="sb-onboarding-wizard-step-wrapper sb-onboarding-wizard-step-configuref sb-fs">
2
3 <div class="sb-onboarding-wizard-step-top sb-fs">
4 <strong v-html="onboardingWizardStepContent['configure-features'].smallHeading"></strong>
5 <h1 tabindex="-1" class="sb-onboarding-wizard-step-heading" v-html="onboardingWizardStepContent['configure-features'].heading"></h1>
6 </div>
7
8 <div class="sb-onboarding-wizard-elements-list sb-fs">
9
10 <div class="sb-onboarding-wizard-elem sb-fs" v-for="(feature, idx) in onboardingWizardStepContent['configure-features']?.featuresList">
11 <div class="sb-onboarding-wizard-elem-info" :data-type="feature?.type">
12 <div class="sb-onboarding-wizard-elem-icon" v-if="feature?.icon !== undefined" v-html="feature?.icon"></div>
13 <div class="sb-onboarding-wizard-elem-text">
14 <strong v-if="feature?.heading !== undefined" v-html="feature?.heading"></strong>
15 <span v-if="feature?.description !== undefined" :id="'feature-desc-' + idx" v-html="feature?.description"></span>
16 <div v-if="feature?.data?.type === 'install_plugins' && feature?.plugins.length > 0" class="sb-onboarding-wizard-smash-list">
17 <div class="sb-onboarding-wizard-smash-inside">
18 <div class="sb-control-elem-tltp">
19 <div v-html="svgIcons['info']"></div>
20 <div class="sb-control-elem-tltp-content">
21 <div class="sb-control-elem-tltp-txt" v-html="feature?.tooltip"></div>
22 </div>
23 </div>
24 <div class="sb-onboarding-wizard-smash-elem" v-for="sPlugin in feature?.plugins">
25 <img :src="sPlugin.icon" :alt="sPlugin.type">
26 <span v-html="sPlugin.type"></span>
27 </div>
28 </div>
29 </div>
30 </div>
31
32 </div>
33 <div v-if="feature?.type === undefined" class="sb-onboarding-wizard-elem-toggle">
34 <button type="button" role="switch"
35 :aria-checked="switcherOnboardingWizardCheckActive(feature) ? 'true' : 'false'"
36 :aria-label="feature?.heading"
37 :aria-describedby="feature?.description !== undefined ? 'feature-desc-' + idx : null"
38 :data-color="feature?.color" :data-active="switcherOnboardingWizardCheckActive(feature)"
39 :data-uncheck="feature?.uncheck"
40 @click.prevent.default="switcherOnboardingWizardClick(feature)"></button>
41 </div>
42 <div v-if="feature?.type === 'select'" class="sb-onboarding-wizard-elem-select" @change.prevent.default="selectOptionOnboardingWizardChange(feature)">
43 <select :value="currentOnboardingWizardActiveSettings[feature?.data?.id]?.value">
44 <option v-for="(optName, optValue) in feature?.options" :value="optValue">{{optName}}</option>
45 </select>
46 </div>
47 </div>
48
49 </div>
50
51 <div class="sb-onboarding-wizard-elements-list sb-fs" v-if="onboardingWizardStepContent['configure-features']?.proFeaturesList !== undefined">
52 <div class="sb-onboarding-wizard-elements-list-hd sb-fs">
53 <?php echo esc_html__('Pro Features', 'custom-facebook-feed') ?>
54 </div>
55 <div class="sb-onboarding-wizard-elem sb-fs" v-for="(feature, idx) in onboardingWizardStepContent['configure-features']?.proFeaturesList">
56 <div class="sb-onboarding-wizard-elem-info">
57 <div class="sb-onboarding-wizard-elem-icon" v-if="feature?.icon !== undefined" v-html="feature?.icon"></div>
58 <div class="sb-onboarding-wizard-elem-text">
59 <strong v-if="feature?.heading !== undefined" v-html="feature?.heading"></strong>
60 <span v-if="feature?.description !== undefined" :id="'profeature-desc-' + idx" v-html="feature?.description"></span>
61 </div>
62
63 </div>
64 <div class="sb-onboarding-wizard-elem-toggle">
65 <button type="button" role="switch"
66 :aria-checked="switcherOnboardingWizardCheckActive(feature) ? 'true' : 'false'"
67 :aria-label="feature?.heading"
68 :aria-describedby="feature?.description !== undefined ? 'profeature-desc-' + idx : null"
69 :data-color="feature?.color" :data-active="switcherOnboardingWizardCheckActive(feature)"
70 :data-uncheck="feature?.uncheck"
71 @click.prevent.default="switcherOnboardingWizardClick(feature)"></button>
72 </div>
73 </div>
74
75 </div>
76
77 </div>
78
79 <div class="sb-onboarding-wizard-step-pag-btns sb-fs">
80 <button class="sb-btn cff-btn-grey sb-btn-wizard-back" v-html="'Back'" @click.prevent.default="previousWizardStep"></button>
81 <button class="sb-btn cff-btn-blue sb-btn-wizard-next" v-html="'Next'" @click.prevent.default="nextWizardStep"></button>
82 </div>