1<?php
2/**
3 * Metadata for configuration manager plugin
4 * Additions for the blog plugin
5 *
6 * @author    Esther Brunner <wikidesign@gmail.com>
7 */
8$meta['namespace']    = array('string');
9$meta['formposition'] = array('multichoice',
10                         '_choices' => array('top', 'bottom', 'none'));
11$meta['newentrytitle'] = array('string');
12$meta['dateprefix']   = array('string');
13$meta['sortkey']      = array('multichoice',
14                        '_choices' => array('cdate', 'mdate', 'pagename', 'id', 'title'));
15$meta['sortorder']    = array('multichoice',
16                         '_choices' => array('ascending', 'descending'));
17$meta['excluded_pages'] = array('string');
18
19$meta['showhistogram'] = array('onoff');
20$meta['max_months'] = array('numeric');
21$meta['histogram_height'] = array('numeric');
22// vim:ts=4:sw=4:et:enc=utf-8:
23