1*42a27035SAndreas Gohr<?php 2*42a27035SAndreas Gohr/** 3*42a27035SAndreas Gohr * Options for the CAPTCHA plugin 4*42a27035SAndreas Gohr * 5*42a27035SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 6*42a27035SAndreas Gohr */ 7*42a27035SAndreas Gohr 8*42a27035SAndreas Gohr$meta['mode'] = array('multichoice','_choices' => array('js','text','image','audio')); 9*42a27035SAndreas Gohr$meta['regprotect'] = array('onoff'); 10*42a27035SAndreas Gohr$meta['forusers'] = array('onoff'); 11*42a27035SAndreas Gohr$meta['width'] = array('numeric','_pattern' => '/[0-9]+/'); 12*42a27035SAndreas Gohr$meta['height'] = array('numeric','_pattern' => '/[0-9]+/'); 13*42a27035SAndreas Gohr 14