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