summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/tag/conf
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/tag/conf')
-rw-r--r--platform/www/lib/plugins/tag/conf/default.php13
-rw-r--r--platform/www/lib/plugins/tag/conf/metadata.php20
2 files changed, 33 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/tag/conf/default.php b/platform/www/lib/plugins/tag/conf/default.php
new file mode 100644
index 0000000..9f0b314
--- /dev/null
+++ b/platform/www/lib/plugins/tag/conf/default.php
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Options for the Tag Plugin
+ */
+$conf['namespace'] = 'tag'; // where should tag links point to? default: 'tag'
+$conf['sortkey'] = 'title'; // sort key for topic lists
+$conf['sortorder'] = 'ascending'; // ascending or descending
+$conf['pagelist_flags'] = 'list'; // formatting options for the page list plugin
+$conf['toolbar_icon'] = 0; // enables/disables the toolbar icon
+$conf['list_tags_of_subns'] = 0; // list also tags in subnamespaces of a specified namespace (count syntax)
+$conf['tags_list_css'] = 'tags'; // wich CSS style to use for tag list?
+
+//Setup VIM: ex: et ts=2 :
diff --git a/platform/www/lib/plugins/tag/conf/metadata.php b/platform/www/lib/plugins/tag/conf/metadata.php
new file mode 100644
index 0000000..8fd97c1
--- /dev/null
+++ b/platform/www/lib/plugins/tag/conf/metadata.php
@@ -0,0 +1,20 @@
+<?php
+/**
+ * Metadata for configuration manager plugin
+ * Additions for the tag plugin
+ *
+ * @author Esther Brunner <wikidesign@gmail.com>
+ */
+
+$meta['namespace'] = array('string');
+$meta['sortkey'] = array('multichoice',
+ '_choices' => array('cdate', 'mdate', 'pagename', 'id', 'ns', 'title'));
+$meta['sortorder'] = array('multichoice',
+ '_choices' => array('ascending', 'descending'));
+$meta['pagelist_flags'] = array('string');
+$meta['toolbar_icon'] = array('onoff');
+$meta['list_tags_of_subns'] = array('onoff');
+$meta['tags_list_css'] = array('multichoice',
+ '_choices' => array('tags', 'tagstop'));
+
+//Setup VIM: ex: et ts=2 :