Files
dokuwiki-plugin-botmon/conf/metadata.php

26 lines
693 B
PHP
Raw Normal View History

2025-09-13 23:20:43 +02:00
<?php
/**
* Configuration settings for the BotMon Plugin
*
* @author Sascha Leib <sascha@leib.be>
*/
2025-11-02 21:22:38 +01:00
// How to show data in the admin interface:
2025-10-25 21:14:35 +02:00
$meta['showday'] = array('multichoice',
'_choices' => array ('yesterday', 'today'));
2025-10-27 21:07:05 +01:00
$meta['combineNets'] = array('onoff');
2025-11-02 21:22:38 +01:00
// Geolocation settings:
2025-09-13 23:20:43 +02:00
$meta['geoiplib'] = array('multichoice',
'_choices' => array ('disabled', 'phpgeoip'));
2025-10-20 22:06:36 +02:00
2025-11-02 21:22:38 +01:00
// Captcha settings:
$meta['useCaptcha'] = array('multichoice',
'_choices' => array ('disabled', 'loremipsum', 'dada'));
2025-11-02 21:22:38 +01:00
$meta['captchaSeed'] = array('string');
2025-11-02 21:22:38 +01:00
$meta['captchaBypass'] = array('multicheckbox',
'_choices' => array ('langmatch'), '_other' => 'exists');