Route and Results buttons updated.
[speedfreak] / Server / system / config / captcha.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3  * @package  Core
4  *
5  * Captcha configuration is defined in groups which allows you to easily switch
6  * between different Captcha settings for different forms on your website.
7  * Note: all groups inherit and overwrite the default group.
8  *
9  * Group Options:
10  *  style      - Captcha type, e.g. basic, alpha, word, math, riddle
11  *  width      - Width of the Captcha image
12  *  height     - Height of the Captcha image
13  *  complexity - Difficulty level (0-10), usage depends on chosen style
14  *  background - Path to background image file
15  *  fontpath   - Path to font folder
16  *  fonts      - Font files
17  *  promote    - Valid response count threshold to promote user (FALSE to disable)
18  */
19 $config['default'] = array
20 (
21         'style'      => 'basic',
22         'width'      => 150,
23         'height'     => 50,
24         'complexity' => 4,
25         'background' => '',
26         'fontpath'   => SYSPATH.'fonts/',
27         'fonts'      => array('DejaVuSerif.ttf'),
28         'promote'    => FALSE,
29 );