1<?php
2/**
3 * @license    http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
4 * @author     Francois Merciol <dokuplugin@merciol.fr>
5 *
6 * Metadata for configuration manager plugin
7 * Additions for the schedule plugin
8 */
9$meta['scheduleGroup']    = array('string');	// who can use form
10$meta['adminGroup']       = array('string');	// who can admin data
11$meta['dataDir']          = array('string');	// root dir for XML files
12$meta['groupsDir']        = array('string');	// dir group in wiki pages to find group names
13$meta['noSchedule']       = array('string');	// forbiden name for group (ex skip annual archive dir)
14$meta['scheduleDir']      = array('string');	// dir in wiki pages for events (contains subdir for group name or the shared dir)
15$meta['sharedDir']        = array('string');	// dir for shared event in wiki pages
16$meta['scheduleWhat']     = array('string');	// type event list
17$meta['scheduleAudience'] = array('string');	// type audience list
18$meta['iconName']         = array('string');	// file name containing logo in group dir
19$meta['iconWidth']        = array('numeric');	// default logo width size
20$meta['repeatPosition']   = array('multichoice', '_choices' => array('grouped', 'isolated'));	// does the repeated events are group on top of form
21$meta['bubblePosition']   = array('multichoice', '_choices' => array('left', 'right'));			// tooltips position
22
23$meta['useMap']        	  = array('onoff');
24$meta['defaultCenter']    = array('string');
25$meta['defaultZoom']      = array('numeric');
26$meta['migrate']          = array('onoff');		// XXX to remove ?
27$meta['showOldValues']    = array('onoff');		// XXX to remove ?
28?>
29