3 namespace MediaWiki\HTMLForm\Field
;
6 * A field that must contain a number
10 class HTMLIntField
extends HTMLFloatField
{
16 public function validate( $value, $alldata ) {
17 $p = parent
::validate( $value, $alldata );
23 # https://www.w3.org/TR/html5/infrastructure.html#signed-integers
24 # with the addition that a leading '+' sign is ok. Note that leading zeros
25 # are fine, and will be left in the input, which is useful for things like
26 # phone numbers when you know that they are integers (the HTML5 type=tel
27 # input does not require its value to be numeric). If you want a tidier
28 # value to, eg, save in the DB, clean it up with intval().
29 if ( !preg_match( '/^((\+|\-)?\d+)?$/', trim( $value ??
'' ) ) ) {
30 return $this->msg( 'htmlform-int-invalid' );
37 /** @deprecated class alias since 1.42 */
38 class_alias( HTMLIntField
::class, 'HTMLIntField' );