summaryrefslogtreecommitdiff
path: root/extensions/ConfirmEdit/ApiFancyCaptchaReload.php
blob: 9b918d8528847ccecb3b58318b0c41d517dccc24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Api module to reload FancyCaptcha
 *
 * @ingroup API
 * @ingroup Extensions
 */
class ApiFancyCaptchaReload extends ApiBase {
	public function execute() {
		# Get a new FancyCaptcha form data
		$captcha = new FancyCaptcha();
		$captchaIndex = $captcha->getCaptchaIndex();

		$result = $this->getResult();
		$result->addValue( null, $this->getModuleName(), array ( 'index' => $captchaIndex ) );
		return true;
	}

	public function getDescription() {
		return 'Get a new FancyCaptcha.';
	}

	public function getAllowedParams() {
		return array();
	}

	public function getParamDescription() {
		return array();
	}

	public function getExamples() {
		return array( 'api.php?action=fancycaptchareload&format=xml' );
	}
}