-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
17 lines (16 loc) · 823 Bytes
/
footer.php
File metadata and controls
17 lines (16 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php function auto_copyright($year = 'auto'){
if(intval($year) == 'auto'){ $year = date('Y'); }
if(intval($year) == date('Y')){ echo intval($year); }
if(intval($year) < date('Y')){ echo intval($year) . ' - ' . date('Y'); }
if(intval($year) > date('Y')){ echo date('Y'); }
} ?>
<footer>
<div class="author">Resonant Rise Manager © <?php echo auto_copyright('2015'); ?> - Hover Over Me <br />
<span class="authortip">Resonant Rise Manager is property of Resonant Rise. <br />
Resonant Rise is maintained by the Resonant Rise development team.<br />
Special thanks to: <a href="https://bot.notenoughmods.com/">NotEnoughMods</a> & <a href="http://www.minecraftforum.net/members/citricsquid">citricsquid</a>. We <div id="heart"></div> you guys.
</span>
</div>
</footer>
</body>
</html>