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['automatic'] = array('onoff'); 10$meta['allowguests'] = array('onoff'); 11$meta['linkemail'] = array('onoff'); 12$meta['usegravatar'] = array('onoff'); 13$meta['gravatar_size'] = array('multichoice', '_choices' => array(20, 40, 80)); 14$meta['gravatar_rating'] = array('multichoice', '_choices' => array('X', 'R', 'PG', 'G')); 15$meta['urlfield'] = array('onoff'); 16$meta['addressfield'] = array('onoff'); 17$meta['adminimport'] = array('onoff'); 18$meta['usecocomment'] = array('onoff'); 19$meta['wikisyntaxok'] = array('onoff'); 20 21$meta['threads_formposition'] = array( 22 'multichoice', 23 '_choices' => array('top', 'bottom') 24 ); 25 26//Setup VIM: ex: et ts=2 enc=utf-8 : 27