Skip to content

Commit 5d05ad9

Browse files
Initial commit
0 parents  commit 5d05ad9

File tree

5 files changed

+48
-0
lines changed

5 files changed

+48
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Mirnes Glamočić
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# PHP function for copyright years
2+
This repository contain a custom **PHP function** to display a *copyright years*. When a website is new the copyright notice will display the copyright symbol and only the current year, but each time the january wills allong it will display a range of years indicating both the start year and the current year.
3+
4+
With PHP function for date the start year will display 4 digit number and the current year will display only last twoo digit number of year.
5+
6+
---
7+
![PREVIEW](copyright_1Year.png "Footer with PHP function for display only the current year")
8+
9+
![PREVIEW](copyright_2Years.png "Footer with PHP function for display a range of years")
10+
11+
---
12+
Download the files as a zip using the green button, or clone the repository to your machine using Git.
13+

copyright_1Year.png

2.53 KB
Loading

copyright_2Years.png

2.62 KB
Loading

footer.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<footer id="footer" style="background-color:#000;color:#FFF;width:90%;margin:0 auto;padding:5px;text-align:center";>
2+
<?php
3+
function copyright($startYear) {
4+
$currentYear = date('Y');
5+
if ($startYear < $currentYear) {
6+
$currentYear = date('y');
7+
return "<p>&copy Copyright $startYear &ndash; $currentYear " . "| Developed by Mirnes Glamočić</p>";
8+
} else {
9+
return "<p>&copy Copyright $startYear " . "| Developed by Mirnes Glamočić</p>";
10+
}
11+
}
12+
echo copyright(2021);
13+
?>
14+
</footer>

0 commit comments

Comments
 (0)