XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
config.php
Go to the documentation of this file.
1 <?php
21 defined('XOOPS_ROOT_PATH') or die('Restricted access');
22 
27 return $config = array(
28  'disabled' => false, // Disable CAPTCHA
29  'mode' => 'text', // default mode, you can choose 'text', 'image', 'recaptcha'(requires api key)
30  'name' => 'xoopscaptcha', // captcha name
31  'skipmember' => true, // Skip CAPTCHA check for members
32  'maxattempts' => 10, // Maximum attempts for each session
33 );
34 
35 ?>