metadata.06.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. * @var method
  10. * @brief How to send the notification
  11. *
  12. * Possible values:
  13. * - subsection : creates content inside the wikipage (top) (default)
  14. */
  15. $meta['method'] = array('multichoice', '_choices'=> array(
  16. 'subsection')
  17. );
  18. /**
  19. * @var source
  20. * @brief Where does the plugin obtain the message from
  21. *
  22. * Possible values:
  23. * - banner : get message from $conf['banner']
  24. * - wikipage : get messages from wikipage $conf['wikipage']
  25. */
  26. $meta['source'] = array('multichoice', '_choices'=> array(
  27. 'banner', 'wikipage' )
  28. );
  29. //@ wikipage : the wikipage containing the message, in pagename format
  30. $meta['wikipage'] = array('string');
  31. //@ banner : the content of the message, in DokuWiki format
  32. $meta['banner'] = array('string');
  33. /**
  34. * @var min_ie_version
  35. * @brief Minimal 'acceptable' IE version
  36. */
  37. $meta['min_ie_version'] = array('string');