2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* A Single Numeric field extending a typical
|
|
|
|
* TextField but with validation.
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-formattedinput
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class NumericField extends TextField{
|
|
|
|
|
2009-07-17 01:58:42 +02:00
|
|
|
function Field() {
|
|
|
|
$html = parent::Field();
|
|
|
|
Requirements::javascript(SAPPHIRE_DIR . 'javascript/NumericField.js');
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2011-12-22 13:10:57 +01:00
|
|
|
|
|
|
|
function Type() {
|
|
|
|
return 'numeric text';
|
|
|
|
}
|
2009-07-17 01:58:42 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/** PHP Validation **/
|
|
|
|
function validate($validator){
|
2009-04-29 01:55:53 +02:00
|
|
|
if($this->value && !is_numeric(trim($this->value))){
|
2007-10-25 04:47:45 +02:00
|
|
|
$validator->validationError(
|
|
|
|
$this->name,
|
|
|
|
sprintf(
|
|
|
|
_t('NumericField.VALIDATION', "'%s' is not a number, only numbers can be accepted for this field"),
|
|
|
|
$this->value
|
|
|
|
),
|
|
|
|
"validation"
|
|
|
|
);
|
2007-07-19 12:40:28 +02:00
|
|
|
return false;
|
|
|
|
} else{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function dataValue() {
|
|
|
|
return (is_numeric($this->value)) ? $this->value : 0;
|
|
|
|
}
|
|
|
|
}
|