source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/plugins/captcha/conf/metadata.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 407 bytes
Line 
1<?php
2/**
3 * Options for the CAPTCHA plugin
4 *
5 * @author Andreas Gohr <[email protected]>
6 */
7
8$meta['mode'] = array('multichoice','_choices' => array('js','text','image','audio','figlet'));
9$meta['regprotect'] = array('onoff');
10$meta['forusers'] = array('onoff');
11$meta['width'] = array('numeric','_pattern' => '/[0-9]+/');
12$meta['height'] = array('numeric','_pattern' => '/[0-9]+/');
13
Note: See TracBrowser for help on using the repository browser.