1
0
Fork 0

Dynamic copyright

master
Lukas Bestle 6 years ago
parent 8580307459
commit 95e0ff6178

@ -6,4 +6,4 @@ Description: codesignd ist Lukas Bestle, ein Backend-Web-Entwickler und Mitglied
---- ----
Copyright: © 2015-2017 Lukas Bestle Copyright: © (copyright: 2015) Lukas Bestle

@ -6,4 +6,4 @@ Description: codesignd is Lukas Bestle, a backend web developer and member of th
---- ----
Copyright: © 2015-2017 Lukas Bestle Copyright: © (copyright: 2015) Lukas Bestle

@ -1 +1 @@
Subproject commit 32645c0414b9750145ec1d6fbd9a60d449c0d27f Subproject commit a42ea124cc0094fdbaff1350b1dc0490a1924cf5

@ -0,0 +1,19 @@
<?php
/**
* copyright Kirbytag
*
* Usage: (copyright: <Copyright begin year>)
*/
kirby()->set('tag', 'copyright', [
'html' => function($tag) {
$begin = $tag->attr('copyright');
$current = date('Y');
if($begin === $current) {
return $current;
} else {
return $begin . '' . $current;
}
}
]);
Loading…
Cancel
Save