summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/blog/syntax/draft.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/blog/syntax/draft.php')
-rw-r--r--platform/www/lib/plugins/blog/syntax/draft.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/blog/syntax/draft.php b/platform/www/lib/plugins/blog/syntax/draft.php
new file mode 100644
index 0000000..239f0c2
--- /dev/null
+++ b/platform/www/lib/plugins/blog/syntax/draft.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Blog Plugin, draft component: marks the current page as draft
+ *
+ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ * @author Esther Brunner <wikidesign@gmail.com>
+ */
+
+class syntax_plugin_blog_draft extends DokuWiki_Syntax_Plugin {
+
+ function getType() { return 'substition'; }
+ function getSort() { return 99; }
+
+ function connectTo($mode) {
+ $this->Lexer->addSpecialPattern('~~DRAFT~~', $mode, 'plugin_blog_draft');
+ }
+
+ function handle($match, $state, $pos, Doku_Handler $handler) {
+ return true;
+ }
+
+ /**
+ * The only thing this plugin component does is to set the metadata 'type' to 'draft'
+ */
+ function render($mode, Doku_Renderer $renderer, $data) {
+ if ($mode == 'xthml') {
+ return true; // don't output anything
+ } elseif ($mode == 'metadata') {
+ $renderer->meta['type'] = 'draft';
+ }
+ }
+}
+// vim:ts=4:sw=4:et:enc=utf-8: