PluginProbe ʕ •ᴥ•ʔ
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress / 4.10.0
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress v4.10.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 / views / about / content.php
custom-facebook-feed / admin / views / about Last commit date
content.php 3 weeks ago index.php 3 weeks ago
content.php
131 lines
1 <?php if (! defined('ABSPATH')) {
2 exit;
3 } // Exit if accessed directly ?>
4 <div class="cff-fb-full-wrapper cff-fb-fs">
5 <?php
6
7 /**
8 * CFF Admin Notices
9 *
10 * @since 4.0
11 */
12
13 do_action('cff_admin_notices');
14 ?>
15 <div class="cff-sb-container">
16 <div class="cff-section-header">
17 <h2>{{genericText.title}}</h2>
18 </div>
19
20 <div class="cff-about-box">
21 <div class="sb-team-avatar">
22 <img :src="aboutBox.teamAvatar" :alt="aboutBox.teamImgAlt">
23 </div>
24 <div class="sb-team-info">
25 <div class="sb-team-left">
26 <h2>{{aboutBox.atSmashBalloon}}</h2>
27 </div>
28 <div class="sb-team-right">
29 <p>{{aboutBox.weAreOn}}</p>
30 <p>{{aboutBox.ourPlugins}}</p>
31 </div>
32 </div>
33 </div>
34
35 <div class="cff-section-second-header">
36 <h3>{{genericText.title2}}</h3>
37 <p>{{genericText.description2}}</p>
38 </div>
39
40 <div class="cff-plugins-boxes-container">
41 <div class="sb-plugins-box" v-for="(plugin, name, index) in plugins">
42 <div class="icon"><img :src="plugin.icon" :alt="plugin.title"></div>
43 <div class="plugin-box-content">
44 <h4 class="sb-box-title">{{plugin.title +''+ (plugin.type != 'none' ? ' Pro' : '')}}</h4>
45 <p class="sb-box-description">{{plugin.description}}</p>
46 <div class="sb-action-buttons">
47 <button class="cff-btn sb-btn-add" v-if="plugin.type === 'none' && plugin.activated === 'none'" @click="installPlugin(plugin.download_plugin, name, index, 'plugin')">
48 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
49 {{buttons.install}}
50 </button>
51 <button class="cff-btn sb-btn-installed" v-if="plugin.type === 'pro'">
52 <span v-html="icons.checkmarkSVG"></span>
53 {{buttons.installed}}
54 </button>
55 <button class="cff-btn sb-btn-activate" v-if="plugin.type === 'pro' && !plugin.activated" @click="activatePlugin(plugin.plugin, name, index, 'plugin')" :class="btnStatus">
56 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
57 {{buttons.activate}}
58 </button>
59 <!--<button class="cff-btn sb-btn-deactivate" v-if="plugin.installed && plugin.activated && name != 'facebook'" @click="deactivatePlugin(plugin.plugin, name, index, 'plugin')" :class="btnStatus">
60 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
61 {{buttons.deactivate}}
62 </button>-->
63 <a class="cff-btn sb-btn-activate" :href="plugin.link" target="_blank" v-if="plugin.type == 'free'">
64 {{buttons.upgradeToPro}}
65 </a>
66 </div>
67 </div>
68 </div>
69
70 <div class="sb-plugins-box cff-social-wall-plugin-box">
71 <span class="sb-box-bg-image">
72 <img :src="social_wall.graphic" alt="Social Wall Image">
73 </span>
74 <div class="plugin-box-content">
75 <h4 class="sb-box-title">{{social_wall.title}}</h4>
76 <p class="sb-box-description">{{social_wall.description}}</p>
77 <div class="sb-action-buttons">
78 <a class="cff-btn sb-btn-add" v-if="!social_wall.installed" :href="social_wall.permalink" target="_blank">
79 {{buttons.viewDemo}}
80 <span v-html="icons.link"></span>
81 </a>
82 <button class="cff-btn sb-btn-installed" v-if="social_wall.installed">
83 <span v-html="icons.checkmarkSVG"></span>
84 {{buttons.installed}}
85 </button>
86 <button class="cff-btn sb-btn-activate" v-if="social_wall.installed && ! social_wall.activated" @click="activatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus">
87 <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span>
88 {{buttons.activate}}
89 </button>
90 <button class="cff-btn sb-btn-deactivate" v-if="social_wall.installed && social_wall.activated" @click="deactivatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus">
91 <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span>
92 {{buttons.deactivate}}
93 </button>
94 </div>
95 </div>
96 </div>
97 </div>
98
99 <div class="cff-section-second-header">
100 <h3>{{genericText.title3}}</h3>
101 </div>
102
103 <div class="cff-plugins-boxes-container sb-recommended-plugins">
104 <div class="sb-plugins-box" v-for="(plugin, name, index) in recommendedPlugins">
105 <div class="icon"><img :src="plugin.icon" :alt="plugin.title"></div>
106 <div class="plugin-box-content">
107 <h4 class="sb-box-title">{{plugin.title}}</h4>
108 <p class="sb-box-description">{{plugin.description}}</p>
109 <div class="sb-action-buttons">
110 <button class="cff-btn sb-btn-add" v-if="!plugin.installed" @click="installPlugin(plugin.download_plugin, name, index, 'recommended_plugin')">
111 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
112 {{buttons.install}}
113 </button>
114 <button class="cff-btn sb-btn-installed" v-if="plugin.installed">
115 <span v-html="icons.checkmarkSVG"></span>
116 {{buttons.installed}}
117 </button>
118 <button class="cff-btn sb-btn-activate" v-if="plugin.installed && ! plugin.activated" @click="activatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus">
119 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
120 {{buttons.activate}}
121 </button>
122 <button class="cff-btn sb-btn-deactivate" v-if="plugin.installed && plugin.activated && name != 'facebook'" @click="deactivatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus">
123 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
124 {{buttons.deactivate}}
125 </button>
126 </div>
127 </div>
128 </div>
129 </div>
130 </div>
131 </div>