Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
NukeConfigNames | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | // phpcs:disable Generic.NamingConventions.UpperCaseConstantName.ClassConstantNotUpperCase |
4 | // phpcs:disable Generic.Files.LineLength.TooLong |
5 | namespace MediaWiki\Extension\Nuke; |
6 | |
7 | class NukeConfigNames { |
8 | |
9 | /** |
10 | * The maximum age of a new page creation or file upload before it becomes ineligible |
11 | * for mass deletion. Defaults to the value of $wgRCMaxAge. |
12 | */ |
13 | public const MaxAge = "NukeMaxAge"; |
14 | |
15 | /** |
16 | * The UI type to use for Special:Nuke. Used to switch between the standard HTMLForm-based |
17 | * interface and the (as of 2024-12) experimental Codex-based interface. Can be overridden |
18 | * by a request parameter. |
19 | * |
20 | * @since 1.44 |
21 | */ |
22 | public const UIType = "NukeUIType"; |
23 | |
24 | } |