| 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 |
|