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 |