diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/default.php | 10 | ||||
-rw-r--r-- | conf/metadata.php | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/conf/default.php b/conf/default.php new file mode 100644 index 000000000..7f1fbb246 --- /dev/null +++ b/conf/default.php @@ -0,0 +1,10 @@ +<?php +/* + * default configuration settings + * + */ + +$conf['tagline'] = 'This is the tagline - explaining what this site is about.'; +$conf['discussionNS'] = 'discussion'; +$conf['sidebarID'] = 'sidebar'; +$conf['hideTools'] = 0; diff --git a/conf/metadata.php b/conf/metadata.php new file mode 100644 index 000000000..591053e7e --- /dev/null +++ b/conf/metadata.php @@ -0,0 +1,12 @@ +<?php +/* + * configuration metadata + * + */ + +$meta['tagline'] = array('string'); +$meta['discussionNS'] = array('string'); +$meta['sidebarID'] = array('string'); +$meta['hideTools'] = array('onoff'); + +// array('multichoice','_choices' => array(0,1,2)); |