xref: /plugin/botmon/conf/metadata.php (revision 7dae1c4dca0a0e2b1ffbe09b3c11a6dad3ce7b84)
1<?php
2/**
3 * Configuration settings for the BotMon Plugin
4 *
5 * @author     Sascha Leib <sascha@leib.be>
6 */
7
8// How to show data in the admin interface:
9$meta['showday'] = array('multichoice',
10						'_choices' => array ('yesterday', 'today'));
11
12$meta['combineNets'] = array('onoff');
13
14// Geolocation settings:
15$meta['geoiplib'] = array('multichoice',
16						'_choices' => array ('disabled', 'phpgeoip'));
17
18// Captcha settings:
19$meta['useCaptcha'] = array('multichoice',
20						'_choices' => array ('disabled', 'loremipsum', 'dada'));
21
22$meta['captchaSeed'] = array('string');
23
24$meta['captchaOptions'] = array('multicheckbox',
25						'_choices' => array ('langmatch', 'anyval'), '_other' => 'exists');
26