nieuws: port excelsior toc and year filtering
[minimedit.git] / nieuws.php
index 157986cfea7eac64baa31bffc350df81d53c557c..84a6172638cd446dc98a342f333497065bdfa9e4 100644 (file)
@@ -1,17 +1,33 @@
 <?php
 include 'nieuws.inc.php';
 
-if ($Args) {
+@list ($year, $month, $page) = explode('/', trim($Args, '/'));
+
+if ($page) {
        $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
        print shownewsarticle($Args, FALSE, $edit);
-       return;
+       return 1;
 }
 
-ob_clean();
-print "<h2>Nieuwsarchief</h2>\n\n";
+if ($year) {
+       ob_clean();
+       print "<h2>Nieuws $year</h2>\n\n";
+
+       print '<div id="news">'."\n\n";
+       shownews("$Page/$year/??", 100);
+       print "</div>\n\n";
+
+       return 1;
+}
 
 print '<div id="news">'."\n\n";
-shownews($Page, 20);
+
+foreach (array_reverse(glob("$Page/2???")) as $page) {
+       $year = basename($page, '.html');
+       printf('<h3><a href="/%s">%s</a></h3>'."\n", $page, $year);
+       printtoc("$page/??");
+}
+
 print "</div>\n\n";
 
 if (!empty($User['admin'])) {