page: separate function to run placeholder includes
[minimedit.git] / nieuws / index.php
index 374b9b0db8168399128b3f776a811daabe7c57db..b4191cee8898d6b275f20e02ba4dd2c8719f8bd0 100644 (file)
@@ -6,56 +6,15 @@ $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');
+       }
        if ($replyform) {
-               print '<h3>Reacties</h3>'."\n";
-               $pagelink = $Page.$Args;
-
-               if ($_POST) {
-                       try {
-                               @mkdir($pagelink);
-                               $target = $pagelink.'/'.date('YmdHis').':'.$User['name'].'.txt';
-                               $written = file_put_contents($target, $_POST['reply']);
-                               if ($written === FALSE) {
-                                       throw new Exception('Fout bij opslaan');
-                               }
-                               $_POST['reply'] = NULL;
-                       }
-                       catch (Exception $e) {
-                               print '<p class=warn>Antwoord niet opgeslagen.</p>'."\n\n";
-                       }
-               }
-
-               print '<ul class="replies">';
-
-               foreach (glob("$pagelink/*.txt") as $reply) {
-                       preg_match('</(\d{2,14}) : ([^:]*) [^/]* \.txt$>x', $reply, $replymeta);
-                       if (!$replymeta) continue;
-                       $replydate = str_split($replymeta[1], 2);
-                       $replydate[1] = $replydate[0] . $replydate[1];
-                       print '<li>';
-                       printf('<strong>%s</strong> <small class=date>%s</small>',
-                               $replymeta[2], showdate($replydate)
-                       );
-                       $replydata = file_get_contents($reply);
-                       printf('<p>%s</p>', nl2br(htmlspecialchars($replydata)));
-                       print "</li>\n";
-               }
-
-               print '<li>';
-               print '<form method="post" action="">';
-               printf('<textarea id="%s" name="%1$s" cols=60 rows=3 placeholder="%s">%s</textarea>'."\n",
-                       'reply',
-                       "Bericht van {$User['name']}",
-                       ''
-               );
-               print '<input type="submit" value="Plaatsen" />'."\n";
-               print "</form></li>\n";
-
-               print "</ul>\n\n";
+               print placeholder_include('nieuws/replies');
        }
-
        return 1;
 }
 
@@ -80,6 +39,10 @@ if ($year) {
        return 1;
 }
 
+$html = ob_get_clean();
+printf('<div class="nav right"><a href="%s">Feed</a></div>'."\n", "/$Page/feed");
+print $html;
+
 print '<div id="news">'."\n\n";
 
 foreach (array_reverse(glob("$Page/2???")) as $page) {