mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-15 03:35:15 +00:00
274e6079f8
Change-Id: Ib76375fed58fddb1f96728dd2baeec08e222dc83
18 lines
549 B
PHP
18 lines
549 B
PHP
<?php
|
|
|
|
/**
|
|
* 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';
|
|
}
|