footer-new.php
5 years ago
footer.php
5 years ago
functions.php
5 years ago
header-new.php
5 years ago
header.php
5 years ago
modal.php
5 years ago
sidebar.php
5 years ago
uninstallSurveyPopup.php
5 years ago
header.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | $isAdsEnabled = SGConfig::get('SG_DISABLE_ADS'); |
| 4 | $closeFreeBanner = SGConfig::get('SG_CLOSE_FREE_BANNER'); |
| 5 | |
| 6 | $isPlatinumPackage = false; |
| 7 | $pluginCapabilities = backupGuardGetCapabilities(); |
| 8 | if ($pluginCapabilities == BACKUP_GUARD_CAPABILITIES_PLATINUM) { |
| 9 | $isPlatinumPackage = true; |
| 10 | } |
| 11 | |
| 12 | if (!$isPlatinumPackage && !$isAdsEnabled && !$closeFreeBanner) { |
| 13 | include_once(SG_NOTICE_TEMPLATES_PATH.'banner.php'); |
| 14 | } |
| 15 | |
| 16 | SGNotice::getInstance()->renderAll(); |
| 17 | ?> |
| 18 | |
| 19 | <div class="sg-spinner"></div> |
| 20 | <div class="sg-wrapper-less"> |
| 21 | <div id="sg-wrapper"> |
| 22 |