PluginProbe ʕ •ᴥ•ʔ
Custom Twitter Feeds – A Tweets Widget or X Feed Widget / 2.8.0
Custom Twitter Feeds – A Tweets Widget or X Feed Widget v2.8.0
2.8.0 2.7.0 2.6.1 2.6.0 1.0 1.0.1 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.4 1.4.1 1.5 1.5.1 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.1.2 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.5.4 2.5.5 trunk
custom-twitter-feeds / admin / views / about / content.php
custom-twitter-feeds / admin / views / about Last commit date
content.php 3 weeks ago index.php 3 weeks ago
content.php
123 lines
1 <div class="ctf-fb-full-wrapper ctf-fb-fs">
2 <?php
3 /**
4 * SBI Admin Notices
5 *
6 * @since 2.0
7 */
8 do_action('ctf_admin_notices');
9 ?>
10 <div class="ctf-sb-container">
11 <div class="ctf-section-header">
12 <h2>{{genericText.title}}</h2>
13 </div>
14
15 <div class="ctf-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="ctf-section-second-header">
31 <h3>{{genericText.title2}}</h3>
32 <p>{{genericText.description2}}</p>
33 </div>
34
35 <div class="ctf-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}}</h4>
40 <p class="sb-box-description">{{plugin.description}}</p>
41 <div class="sb-action-buttons">
42 <button class="ctf-btn sb-btn-add" v-if="!plugin.installed" @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="ctf-btn sb-btn-installed" v-if="plugin.installed">
47 <span v-html="icons.checkmarkSVG"></span>
48 {{buttons.installed}}
49 </button>
50 <button class="ctf-btn sb-btn-activate" v-if="plugin.installed && ! 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="ctf-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 </div>
59 </div>
60 </div>
61
62 <div class="sb-plugins-box ctf-social-wall-plugin-box">
63 <span class="sb-box-bg-image">
64 <img :src="social_wall.graphic" alt="">
65 </span>
66 <div class="plugin-box-content">
67 <h4 class="sb-box-title">{{social_wall.title}}</h4>
68 <p class="sb-box-description">{{social_wall.description}}</p>
69 <div class="sb-action-buttons">
70 <a class="ctf-btn sb-btn-add" v-if="!social_wall.installed" :href="social_wall.permalink" target="_blank">
71 {{buttons.viewDemo}}
72 <span v-html="icons.link"></span>
73 </a>
74 <button class="ctf-btn sb-btn-installed" v-if="social_wall.installed">
75 <span v-html="icons.checkmarkSVG"></span>
76 {{buttons.installed}}
77 </button>
78 <button class="ctf-btn sb-btn-activate" v-if="social_wall.installed && ! social_wall.activated" @click="activatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus">
79 <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span>
80 {{buttons.activate}}
81 </button>
82 <button class="ctf-btn sb-btn-deactivate" v-if="social_wall.installed && social_wall.activated" @click="deactivatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus">
83 <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span>
84 {{buttons.deactivate}}
85 </button>
86 </div>
87 </div>
88 </div>
89 </div>
90
91 <div class="ctf-section-second-header">
92 <h3>{{genericText.title3}}</h3>
93 </div>
94
95 <div class="ctf-plugins-boxes-container sb-recommended-plugins">
96 <div class="sb-plugins-box" v-for="(plugin, name, index) in recommendedPlugins">
97 <div class="icon"><img :src="plugin.icon" :alt="plugin.title"></div>
98 <div class="plugin-box-content">
99 <h4 class="sb-box-title">{{plugin.title}}</h4>
100 <p class="sb-box-description">{{plugin.description}}</p>
101 <div class="sb-action-buttons">
102 <button class="ctf-btn sb-btn-add" v-if="!plugin.installed" @click="installPlugin(plugin.download_plugin, name, index, 'recommended_plugin')">
103 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
104 {{buttons.install}}
105 </button>
106 <button class="ctf-btn sb-btn-installed" v-if="plugin.installed">
107 <span v-html="icons.checkmarkSVG"></span>
108 {{buttons.installed}}
109 </button>
110 <button class="ctf-btn sb-btn-activate" v-if="plugin.installed && ! plugin.activated" @click="activatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus">
111 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
112 {{buttons.activate}}
113 </button>
114 <button class="ctf-btn sb-btn-deactivate" v-if="plugin.installed && plugin.activated && name != 'facebook'" @click="deactivatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus">
115 <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span>
116 {{buttons.deactivate}}
117 </button>
118 </div>
119 </div>
120 </div>
121 </div>
122 </div>
123 </div>