...
Code Block | ||
---|---|---|
| ||
$wt = new WikiTransformation(); $wt->setPage($page); $result = $wt->processSource($source); |
Code Block | ||
---|---|---|
| ||
private function assemblySource($source, $templateSource, $page = null)
{
$t = new WikiTransformation(false);
return $t->assemblyTemplate($source, $templateSource, $page);
} |
ListPagesModule.php
:
Code Block | ||
---|---|---|
| ||
if ($separation) { $wt = new WikiTransformation(); $wt->setMode("list"); $wt->setPage($page); $b = $wt->processSource($b); $b = "<div class=\"list-pages-item\">\n" . $b . "</div>"; //$b = "[[div class=\"list-pages-item\"]]\n".$b."\n[[/div]]"; } |
...