1<?php
2/**
3 * Configuration-manager metadata for noiewarning plugin
4 *
5 * @license:    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author:     Luis Machuca <luis.machuca@gulix.cl>
7 */
8
9
10/**
11 * @var        method
12 * @brief      How to send the notification
13 *
14 * Possible values:
15 * - subsection  : creates content inside the wikipage (top) (default)
16 */
17$meta['method']     = array('multichoice', '_choices'=> array(
18                            'subsection')
19                            );
20
21/**
22 * @var        source
23 * @brief      Where does the plugin obtain the message from
24 *
25 * Possible values:
26 * - banner      : get message from $conf['banner']
27 * - wikipage    : get messages from wikipage $conf['wikipage']
28 */
29$meta['source']     = array('multichoice', '_choices'=> array(
30                            'banner', 'wikipage' )
31                            );
32
33//@ wikipage : the wikipage containing the message, in pagename format
34$meta['wikipage']   = array('string');
35//@ banner : the content of the message, in DokuWiki format
36$meta['banner']     = array('string');
37
38/**
39 * @var        min_ie_version
40 * @brief      Minimal 'acceptable' IE version
41 */
42$meta['min_ie_version']  = array('string');
43