mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
48a60aa762
Change-Id: I75f34c66f1c1968cfb9a3e1932068ec2420e0fa6
19 lines
592 B
PHP
19 lines
592 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\ConfirmEdit;
|
|
|
|
/**
|
|
* A class with constants of the CAPTCHA triggers built-in in ConfirmEdit. Other extensions may
|
|
* add more possible triggers, which are not included in this class.
|
|
*/
|
|
abstract class CaptchaTriggers {
|
|
public const EDIT = 'edit';
|
|
public const CREATE = 'create';
|
|
public const SENDEMAIL = 'sendemail';
|
|
public const ADD_URL = 'addurl';
|
|
public const CREATE_ACCOUNT = 'createaccount';
|
|
public const BAD_LOGIN = 'badlogin';
|
|
public const BAD_LOGIN_PER_USER = 'badloginperuser';
|
|
public const EXT_REG_ATTRIBUTE_NAME = 'CaptchaTriggers';
|
|
}
|