X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/df00ab2b9618c2ae1038c643b01b05d443368ee9..bae682c87abd4a43231496979963a6bbb66ecc4e:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index b54d5bd..7397357 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -12,6 +12,25 @@ if ($page and !is_numeric($page)) { if ($article->image) { $Place['image'] = "https://lijtweg.nl/".$article->thumb('600x'); } + if (!empty($User['admin'])) { + $taglist = []; + foreach (glob("$Page/.tags/*") as $tagpath) { + $tagname = pathinfo($tagpath, PATHINFO_BASENAME); + $tagvalue = file_exists("$tagpath/$year-$page.html"); + $tagtarget = is_writable($tagpath); + $taglist[] = sprintf( + '' . + '', + "tags[$tagname]", $tagname, "tag-$tagname", + $tagvalue ? ' checked' : '', + ' onclick="return false"', + ucfirst($tagname) + ); + } + printf("

Tags: %s

\n", + implode("\n\t", $taglist) + ); + } if ($replyform) { print placeholder_include('nieuws/replies'); } @@ -34,6 +53,10 @@ if ($year) { $match .= "/19??"; $title .= " vóór 2000"; } + elseif (file_exists("$Page/.tags/$year")) { + $match .= "/.tags/$year"; + $title .= " met $year"; + } print "

$title

\n\n"; print placeholder_include('nieuws', [$match]);