d6a85e7f36d88c62e0291505fcde2dac18e6d7e8
[minimedit.git] / nieuws / index.php
1 <?php
2 include 'nieuws.inc.php';
3
4 @list ($year, $page) = explode('/', trim($Args, '/'));
5
6 if ($page and !is_numeric($page)) {
7         $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
8         print shownewsarticle($Page.$Args, FALSE, $edit);
9         return 1;
10 }
11
12 if ($year) {
13         ob_clean();
14         $title = "Nieuws";
15         if (is_numeric($year) and $year > 999) {
16                 $match = "$Page/$year/";
17                 if (is_numeric($page)) {
18                         $title .= ' '.$monthname[intval($page)];
19                         $match .= sprintf('%02d-', $page);
20                 }
21                 $title .= ' '.$year;
22         }
23         elseif ($year === '19') {
24                 $match = "$Page/19??/";
25                 $title .= " vóór 2000";
26         }
27
28         print "<h2>$title</h2>\n\n";
29         print '<div id="news">'."\n\n";
30         shownews(glob($match.'*.html'));
31         print "</div>\n\n";
32         return 1;
33 }
34
35 print '<div id="news">'."\n\n";
36
37 foreach (array_reverse(glob("$Page/2???")) as $page) {
38         $year = basename($page, '.html');
39         printf('<h3><a href="/%s">%s</a></h3>'."\n", $page, $year);
40         printtoc($page);
41 }
42
43 if ($pages = glob("$Page/19??/*.html")) {
44         printf('<h3><a href="/%s">%s</a></h3>'."\n", "$Page/19", 'Eerder');
45         printtoc($pages);
46 }
47
48 print "</div>\n\n";
49
50 if (!empty($User['admin'])) {
51         print '<script src="/nieuws/edit.js"></script>'."\n";
52 }