Localisation updates for core and extension messages from translatewiki.net
[toast/cookiecaptcha.git] / FancyCaptcha.php
1 <?php
2 /**
3  * Experimental image-based captcha plugin, using images generated by an
4  * external tool.
5  *
6  * Copyright (C) 2005, 2006 Brion Vibber <brion@pobox.com>
7  * http://www.mediawiki.org/
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  * http://www.gnu.org/copyleft/gpl.html
23  *
24  * @file
25  * @ingroup Extensions
26  */
27
28 if ( !defined( 'MEDIAWIKI' ) ) {
29         exit;
30 }
31
32 require_once dirname( __FILE__ ) . '/ConfirmEdit.php';
33 $wgCaptchaClass = 'FancyCaptcha';
34
35 global $wgCaptchaDirectory;
36 $wgCaptchaDirectory = "$wgUploadDirectory/captcha"; // bad default :D
37
38 global $wgCaptchaDirectoryLevels;
39 $wgCaptchaDirectoryLevels = 0; // To break into subdirectories
40
41 global $wgCaptchaSecret;
42 $wgCaptchaSecret = "CHANGE_THIS_SECRET!";
43
44 /**
45  * By default the FancyCaptcha rotates among all available captchas.
46  * Setting $wgCaptchaDeleteOnSolve to true will delete the captcha 
47  * files when they are correctly solved. Thus the user will need 
48  * something like a cron creating new thumbnails to avoid drying up.
49  */
50 $wgCaptchaDeleteOnSolve = false;
51
52 $wgExtensionMessagesFiles['FancyCaptcha'] = dirname( __FILE__ ) . '/FancyCaptcha.i18n.php';
53 $wgAutoloadClasses['FancyCaptcha'] = dirname( __FILE__ ) . '/FancyCaptcha.class.php';