X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/7983570288ed2798470a552ec04f64aa646b664a..f065f4739ae477d8877805463017f2e7b15e2db5:/article.inc.php diff --git a/article.inc.php b/article.inc.php index b676dd0..c630898 100644 --- a/article.inc.php +++ b/article.inc.php @@ -46,6 +46,8 @@ class ArchiveArticle if (preg_match('{

(.*?)

\s*(.*)}s', $this->body, $titlematch)) { list (, $this->title, $this->body) = $titlematch; } + + return $this->raw; } function __get($col) @@ -202,6 +204,42 @@ class ArchiveArticle ); } } + + function render($blocks = []) + { + $doc = ob_get_clean(); + + if (!empty($blocks['warn'])) { + $warn = '

[[warn]]

'; + if ($offset = strpos($doc, '')) { + $doc = substr_replace($doc, "\n\n".$warn, $offset + 5, 0); + } + else { + $doc = $warn . "\n\n" . $doc; + } + } + + # keep either login or logout parts depending on user level + global $User; + $hideclass = $User && property_exists($User, 'login') && $User->login ? 'logout' : 'login'; + $doc = preg_replace('{\s*<([a-z]+) class="'.$hideclass.'">.*?}s', '', $doc); + + return preg_replace_callback( + '{ \[\[ ([^] ]+) ([^]]*) \]\] }x', + function ($sub) use ($blocks) { + list ($placeholder, $name, $params) = $sub; + $html = $blocks[$name] ?? + $this->widget($name, explode(' ', $params)); + if (empty($html) or $html[0] != '<') { + $html = "$html"; + } + $attr = sprintf(' data-dyn="%s"', is_numeric($name) ? '' : $name.$params); + # contents with identifier in first tag + return preg_replace( '/(?=>)/', $attr, $html, 1); + }, + $doc + ); + } } class PageSearch