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', 'both') 23 ); 24$meta['threads_showdate'] = array('onoff'); 25$meta['threads_showuser'] = array('onoff'); 26 27//Setup VIM: ex: et ts=2 enc=utf-8 : 28