18 lines
483 B
PHP
18 lines
483 B
PHP
<?php
|
|
/**
|
|
* Configuration settings for the BotMon Plugin
|
|
*
|
|
* @author Sascha Leib <sascha@leib.be>
|
|
*/
|
|
|
|
$meta['showday'] = array('multichoice',
|
|
'_choices' => array ('yesterday', 'today'));
|
|
|
|
$meta['geoiplib'] = array('multichoice',
|
|
'_choices' => array ('disabled', 'phpgeoip'));
|
|
|
|
//$meta['useCaptcha'] = array('onoff');
|
|
$meta['useCaptcha'] = array('multichoice',
|
|
'_choices' => array ('disabled', 'loremipsum', 'dada'));
|
|
$meta['captchaSeed'] = array('string');
|