aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorM.Dent <dentm42@dm42.net>2018-10-10 22:46:00 -0400
committerM.Dent <dentm42@dm42.net>2018-10-10 22:46:00 -0400
commitbad4ea6e65a45ac2523a9a7c2ec624ad2535b652 (patch)
tree07ff89a65656efd718284693a7a50f6c41c149b2 /Zotlabs/Module
parent802ccdff4ade258f09fd3dca4ff4aa63cf5f9ac6 (diff)
downloadvolse-hubzilla-bad4ea6e65a45ac2523a9a7c2ec624ad2535b652.tar.gz
volse-hubzilla-bad4ea6e65a45ac2523a9a7c2ec624ad2535b652.tar.bz2
volse-hubzilla-bad4ea6e65a45ac2523a9a7c2ec624ad2535b652.zip
Add wiki_preprocess hook and documentation
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Wiki.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php
index 25823da62..05d6e85cd 100644
--- a/Zotlabs/Module/Wiki.php
+++ b/Zotlabs/Module/Wiki.php
@@ -331,6 +331,10 @@ class Wiki extends Controller {
$sampleContent = t('New page');
$content = (($p['content'] == '') ? $sampleContent : $p['content']);
+
+ $hookinfo = ['content' => $content, 'mimetype' => $mimeType];
+ call_hooks('wiki_preprocess',$hookinfo);
+ $content = $hookinfo['content'];
// Render the Markdown-formatted page content in HTML
if($mimeType == 'text/bbcode') {