Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
0 parents commit 5d05ad9
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Mirnes Glamočić

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# PHP function for copyright years
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.

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.

---
![PREVIEW](copyright_1Year.png "Footer with PHP function for display only the current year")

![PREVIEW](copyright_2Years.png "Footer with PHP function for display a range of years")

---
Download the files as a zip using the green button, or clone the repository to your machine using Git.

Binary file added copyright_1Year.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added copyright_2Years.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<footer id="footer" style="background-color:#000;color:#FFF;width:90%;margin:0 auto;padding:5px;text-align:center";>
<?php
function copyright($startYear) {
$currentYear = date('Y');
if ($startYear < $currentYear) {
$currentYear = date('y');
return "<p>&copy Copyright $startYear &ndash; $currentYear " . "| Developed by Mirnes Glamočić</p>";
} else {
return "<p>&copy Copyright $startYear " . "| Developed by Mirnes Glamočić</p>";
}
}
echo copyright(2021);
?>
</footer>

0 comments on commit 5d05ad9

Please sign in to comment.