PluginProbe ʕ •ᴥ•ʔ
Custom Twitter Feeds – A Tweets Widget or X Feed Widget / 2.7.0
Custom Twitter Feeds – A Tweets Widget or X Feed Widget v2.7.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 / builder / templates / sections / footer.php
custom-twitter-feeds / admin / builder / templates / sections Last commit date
create-feed 1 month ago customizer 1 month ago feeds 1 month ago popup 1 month ago empty-state.php 1 month ago feeds-list.php 1 month ago feeds-type.php 1 month ago footer.php 1 month ago header.php 1 month ago select-source.php 1 month ago select-template.php 1 month ago
footer.php
58 lines
1 <?php
2 include_once CTF_BUILDER_DIR . 'templates/sections/popup/connect-account-popup.php';
3 include_once CTF_BUILDER_DIR . 'templates/sections/popup/extensions-popup.php';
4 include_once CTF_BUILDER_DIR . 'templates/sections/popup/feedtypes-popup.php';
5 include_once CTF_BUILDER_DIR . 'templates/sections/popup/feedtypes-customizer-popup.php';
6 include_once CTF_BUILDER_DIR . 'templates/sections/popup/confirm-dialog-popup.php';
7 include_once CTF_BUILDER_DIR . 'templates/sections/popup/embed-popup.php';
8 include_once CTF_BUILDER_DIR . 'templates/sections/popup/onboarding-popup.php';
9 include_once CTF_BUILDER_DIR . 'templates/sections/popup/onboarding-customizer-popup.php';
10 include_once CTF_BUILDER_DIR . 'templates/sections/popup/install-plugin-popup.php';
11 include_once CTF_BUILDER_DIR . 'templates/sections/popup/feedtemplates-popup.php';
12 ?>
13 <div class="sb-notification-ctn" :data-active="notificationElement.shown" :data-type="notificationElement.type">
14 <div class="sb-notification-icon" v-html="svgIcons[notificationElement.type+'Notification']"></div>
15 <span class="sb-notification-text" v-html="notificationElement.text"></span>
16 </div>
17
18 <div class="sb-full-screen-loader" :data-show="fullScreenLoader ? 'shown' : 'hidden'">
19 <div class="sb-full-screen-loader-logo">
20 <div class="sb-full-screen-loader-spinner"></div>
21 <div class="sb-full-screen-loader-img" v-html="svgIcons['smash']"></div>
22 </div>
23 <div class="sb-full-screen-loader-txt">
24 Loading...
25 </div>
26 </div>
27
28
29
30 <sb-confirm-dialog-component
31 :dialog-box.sync="dialogBox"
32 :source-to-delete="sourceToDelete"
33 :svg-icons="svgIcons"
34 :parent-type="'builder'"
35 :generic-text="genericText"
36 ></sb-confirm-dialog-component>
37
38 <!--
39 <sb-add-source-component
40 :sources-list="sourcesList"
41 :select-source-screen="selectSourceScreen"
42 :views-active="viewsActive"
43 :generic-text="genericText"
44 :selected-feed="selectedFeed"
45 :svg-icons="svgIcons"
46 :links="links"
47 ref="addSourceRef"
48 >
49 </sb-add-source-component>
50 -->
51 <install-plugin-popup
52 :views-active="viewsActive"
53 :generic-text="genericText"
54 :svg-icons="svgIcons"
55 :plugins="plugins[viewsActive.installPluginModal]"
56 >
57 </install-plugin-popup>
58