X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/ba6c22ab7c2f350603f3c1510be7ead7ddbadc3a..v3.8-15-g628a397729:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index 25efd2d..71048d5 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -1,56 +1,72 @@ '."\n"; +} + if ($page and !is_numeric($page)) { $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL; - print shownewsarticle($Args, FALSE, $edit); + $article = new ArchiveArticle("$Page$Args.html"); + $Place['title'] = $edit ?: $article->title; + $Place['description'] = $article->teaser; + $Place[1] = ' '.$article->date.''; + print preg_replace('{(?<=

)(.*?)(?=

)}', ($edit ?: '\1').' [[1]]', ob_get_clean()); + if ($article->file and $article->image) { + $Place['image'] = "/".$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' : '', + ' disabled', + ucfirst($tagname) + ); + } + if ($taglist) { + printf('

Tags: %s

'."\n", + implode("\n\t", $taglist) + ); + } + } + if ($replyform) { + print placeholder_include('nieuws/replies'); + } return 1; } if ($year) { ob_clean(); + $match = $Page; $title = "Nieuws"; - if (is_numeric($year)) { - $match = "$Page/$year/"; + if (is_numeric($year) and $year > 999) { + $match .= "/$year"; if (is_numeric($page)) { $title .= ' '.$monthname[intval($page)]; $match .= sprintf('%02d-', $page); } $title .= ' '.$year; } - else { - $match = "$Page/19??/"; + elseif ($year === '19') { + $match .= "/19??"; $title .= " vóór 2000"; } + elseif (file_exists("$Page/.tags/$year")) { + $match .= "/.tags/$year"; + $title .= " met $year"; + } print "

$title

\n\n"; - print '
'."\n\n"; - shownews(glob($match.'*.html')); - print "
\n\n"; + print placeholder_include('nieuws', [$match]); return 1; } - -if ($Args) { - return; -} - -print '
'."\n\n"; - -foreach (array_reverse(glob("$Page/2???")) as $page) { - $year = basename($page, '.html'); - printf('

%s

'."\n", $page, $year); - printtoc($page); -} - -if ($pages = glob("$Page/19??/*.html")) { - printf('

%s

'."\n", "$Page/oud", 'Eerder'); - printtoc($pages); -} - -print "
\n\n"; - -if (!empty($User['admin'])) { - print ''."\n"; -}