summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/blog/conf/metadata.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/blog/conf/metadata.php')
-rw-r--r--platform/www/lib/plugins/blog/conf/metadata.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/blog/conf/metadata.php b/platform/www/lib/plugins/blog/conf/metadata.php
new file mode 100644
index 0000000..822d3c4
--- /dev/null
+++ b/platform/www/lib/plugins/blog/conf/metadata.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Metadata for configuration manager plugin
+ * Additions for the blog plugin
+ *
+ * @author Esther Brunner <wikidesign@gmail.com>
+ */
+$meta['namespace'] = array('string');
+$meta['formposition'] = array('multichoice',
+ '_choices' => array('top', 'bottom', 'none'));
+$meta['newentrytitle'] = array('string');
+$meta['dateprefix'] = array('string');
+$meta['sortkey'] = array('multichoice',
+ '_choices' => array('cdate', 'mdate', 'pagename', 'id', 'title'));
+$meta['sortorder'] = array('multichoice',
+ '_choices' => array('ascending', 'descending'));
+$meta['excluded_pages'] = array('string');
+
+$meta['showhistogram'] = array('onoff');
+$meta['max_months'] = array('numeric');
+$meta['histogram_height'] = array('numeric');
+// vim:ts=4:sw=4:et:enc=utf-8: