Files
TSN-Ranksystem/stats/_footer.php
Newcomer1989 f7d7aedc5a release 1.3.22
2023-02-01 20:44:58 +01:00

15 lines
801 B
PHP

<?PHP
if ($cfg['stats_imprint_switch'] == "1") {
if($cfg['stats_imprint_address_url'] != NULL) {
echo '<footer><span class="item-margin"><a href="',$cfg['stats_imprint_address_url'],'" target="_blank">',$lang['imprint'],'</span></a>';
} else {
echo '<footer><span class="item-margin"><a href="imprint.php">',$lang['imprint'],'</a></span>';
}
if($cfg['stats_imprint_privacypolicy_url'] != NULL) {
echo '<span class="footer-seperator"></span><span class="item-margin"><a href="',$cfg['stats_imprint_privacypolicy_url'],'" target="_blank">',$lang['privacy'],'</a></span>';
} elseif($cfg['stats_imprint_privacypolicy'] != NULL) {
echo '<span class="footer-seperator"></span><span class="item-margin"><a href="privacy_policy.php">',$lang['privacy'],'</a></span>';
}
echo '</footer>';
}
?>