1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00
dokuwiki_ynh/sources/lib/plugins/captcha/conf/metadata.php
2014-07-20 13:52:39 +02:00

15 lines
586 B
PHP

<?php
/**
* Options for the CAPTCHA plugin
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
$meta['mode'] = array('multichoice', '_choices' => array('js', 'text', 'math', 'question', 'image', 'audio', 'figlet'));
$meta['regprotect'] = array('onoff');
$meta['forusers'] = array('onoff');
$meta['lettercount'] = array('numeric', '_min' => 3, '_max' => 16);
$meta['width'] = array('numeric', '_pattern' => '/[0-9]+/');
$meta['height'] = array('numeric', '_pattern' => '/[0-9]+/');
$meta['question'] = array('string');
$meta['answer'] = array('string');