summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/blog/conf/metadata.php
blob: 822d3c43d87f80d099aca29e53ff0597fbb49737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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: