xref: /plugin/botmon/conf/metadata.php (revision fb281ca1a13fb0419ac09220cd216d20c52045d5)
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['captchaBypass'] = array('multicheckbox',
25						'_choices' => array ('langmatch'), '_other' => 'exists');
26