nieuws: ArchiveArticle class to access news pages
[minimedit.git] / nieuws / index.php
index 506cd0537ad2c3f46de1b032c15ec91eb2b93dae..8a613c2591f57531c594bd28a13ebd2f6d69712e 100644 (file)
@@ -6,7 +6,13 @@ $replyform = $Page == 'melding' && !empty($User);
 
 if ($page and !is_numeric($page)) {
        $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
-       print shownewsarticle($Page.$Args, FALSE, $edit);
+       $article = new ArchiveArticle("$Page$Args.html");
+       $Place[1] = ' <small class="date">'.$article->date.'</small>';
+       print preg_replace('{(?<=<h2>)(.*?)(?=</h2>)}', ($edit ?: '\1').' [[1]]', ob_get_clean());
+       if ($article->image) {
+               $Place['image'] = "https://lijtweg.nl/".$article->thumb('600x');
+               printf('<p><img src="/%s" /></p>'."\n", $article->thumb('640x'));
+       }
 
        if ($replyform) {
                print '<h3>Reacties</h3>'."\n";
@@ -30,7 +36,7 @@ if ($page and !is_numeric($page)) {
                print '<ul class="replies">';
 
                foreach (glob("$pagelink/*.txt") as $reply) {
-                       preg_match('</(\d{14}) : ([^:]*) [^/]* \.txt$>x', $reply, $replymeta);
+                       preg_match('</(\d{2,14}) : ([^:]*) [^/]* \.txt$>x', $reply, $replymeta);
                        if (!$replymeta) continue;
                        $replydate = str_split($replymeta[1], 2);
                        $replydate[1] = $replydate[0] . $replydate[1];