Index: trunk/phase3/includes/api/ApiBase.php |
— | — | @@ -51,7 +51,9 @@ |
52 | 52 | const PARAM_MIN = 5; // Lowest value allowed for a parameter. Only applies if TYPE='integer' |
53 | 53 | const PARAM_ALLOW_DUPLICATES = 6; // Boolean, do we allow the same value to be set more than once when ISMULTI=true |
54 | 54 | const PARAM_DEPRECATED = 7; // Boolean, is the parameter deprecated (will show a warning) |
| 55 | + /// @since 1.17 |
55 | 56 | const PARAM_REQUIRED = 8; // Boolean, is the parameter required? |
| 57 | + /// @since 1.17 |
56 | 58 | const PARAM_RANGE_ENFORCE = 9; // Boolean, if MIN/MAX are set, enforce (die) these? Only applies if TYPE='integer' Use with extreme caution |
57 | 59 | |
58 | 60 | const LIMIT_BIG1 = 500; // Fast query, std user limit |