xref: /plugin/discussion/conf/metadata.php (revision 5fc512fb4e57f6c46a139cbe38495abc4108b731)
1<?php
2/**
3 * Metadata for configuration manager plugin
4 * Additions for the discussion plugin
5 *
6 * @author    Esther Brunner <wikidesign@gmail.com>
7 */
8
9$meta['allowguests']     = array('onoff');
10$meta['linkemail']       = array('onoff');
11$meta['usegravatar']     = array('onoff');
12$meta['gravatar_size']   = array('multichoice', '_choices' => array(20, 40, 80));
13$meta['gravatar_rating'] = array('multichoice', '_choices' => array('X', 'R', 'PG', 'G'));
14$meta['urlfield']        = array('onoff');
15$meta['addressfield']    = array('onoff');
16$meta['datefield']       = array('onoff');
17$meta['usecocomment']    = array('onoff');
18$meta['wikisyntaxok']    = array('onoff');
19
20$meta['threads_formposition'] = array(
21                                  'multichoice',
22                                  '_choices' => array('top', 'bottom')
23                                );
24
25//Setup VIM: ex: et ts=2 enc=utf-8 :
26