15 $p = parent::validate( $value, $alldata );
22 # with the addition that a leading '+' sign is ok. Note that leading zeros
23 # are fine, and will be left in the input, which is useful for things like
24 # phone numbers when you know that they are integers (the HTML5 type=tel
25 # input does not require its value to be numeric). If you want a tidier
26 # value to, eg, save in the DB, clean it up with intval().
27 if ( !preg_match(
'/^((\+|\-)?\d+)?$/', trim( $value ??
'' ) ) ) {
28 return $this->
msg(
'htmlform-int-invalid' );
A field that will contain a numeric value.
A field that must contain a number.
validate( $value, $alldata)
Override this function to add specific validation checks on the field input.Don't forget to call pare...