12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Configuration-manager metadata for noiewarning plugin
- *
- * @license: GPL 2 (http://www.gnu.org/licenses/gpl.html)
- * @author: Luis Machuca <luis.machuca@gulix.cl>
- */
- /**
- * @var method
- * @brief How to send the notification
- *
- * Possible values:
- * - subsection : creates content inside the wikipage (top) (default)
- */
- $meta['method'] = array('multichoice', '_choices'=> array(
- 'subsection')
- );
- /**
- * @var source
- * @brief Where does the plugin obtain the message from
- *
- * Possible values:
- * - banner : get message from $conf['banner']
- * - wikipage : get messages from wikipage $conf['wikipage']
- */
- $meta['source'] = array('multichoice', '_choices'=> array(
- 'banner', 'wikipage' )
- );
- //@ wikipage : the wikipage containing the message, in pagename format
- $meta['wikipage'] = array('string');
- //@ banner : the content of the message, in DokuWiki format
- $meta['banner'] = array('string');
- /**
- * @var min_ie_version
- * @brief Minimal 'acceptable' IE version
- */
- $meta['min_ie_version'] = array('string');
|