X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/f065f4739ae477d8877805463017f2e7b15e2db5..v4.5-23-gb9757db578:/article.inc.php diff --git a/article.inc.php b/article.inc.php index c630898..30de51e 100644 --- a/article.inc.php +++ b/article.inc.php @@ -1,23 +1,9 @@ 0 ? $monthname[intval($parts[1])] : '', $parts[0], - count($parts) > 5 ? "$parts[3]:$parts[4]" : '', - ])); -} - class ArchiveArticle { public $raw, $title, $body; # file contents public $meta = []; # head metadata properties + public $place = []; # template variables replaced in render() function __construct($path) { @@ -113,10 +99,6 @@ class ArchiveArticle { return implode('-', $this->dateparts()) . 'T12:00:00+02:00'; } - function date() - { - return showdate($this->dateparts); - } function story() { @@ -182,18 +164,20 @@ class ArchiveArticle ob_start(); $Page = clone $this; - $Page->handler = $Page->handler . $Page->path; // .= with explicit getter - $Page->path = ''; - $Place = $GLOBALS['Place']; - foreach ($params as $param) { - if ($set = strpos($param, '=')) { - $Place[ substr($param, 0, $set) ] = substr($param, $set + 1); - } - elseif (!empty($param)) { - $Page->path .= '/'.$param; + if (is_array($params)) { + $Page->place += $params; + } + else { + foreach (explode(' ', $params) as $param) { + if ($set = strpos($param, '=')) { + $Page->place[ substr($param, 0, $set) ] = substr($param, $set + 1); + } + elseif (!empty($param)) { + $Page->place[] = $param; + } } } - $Page->link .= $Page->path; + try { include "widget/$name.php"; return ob_get_clean(); @@ -205,11 +189,11 @@ class ArchiveArticle } } - function render($blocks = []) + function render() { - $doc = ob_get_clean(); + $doc = $this->raw; - if (!empty($blocks['warn'])) { + if (!empty($this->place['warn'])) { $warn = '

[[warn]]

'; if ($offset = strpos($doc, '')) { $doc = substr_replace($doc, "\n\n".$warn, $offset + 5, 0); @@ -226,10 +210,10 @@ class ArchiveArticle return preg_replace_callback( '{ \[\[ ([^] ]+) ([^]]*) \]\] }x', - function ($sub) use ($blocks) { + function ($sub) { list ($placeholder, $name, $params) = $sub; - $html = $blocks[$name] ?? - $this->widget($name, explode(' ', $params)); + $html = $this->place[$name] ?? + $this->widget($name, $params); if (empty($html) or $html[0] != '<') { $html = "$html"; }