mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
4a5d9b03f8
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
54 lines
1.2 KiB
PHP
Executable File
54 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Field for displaying NZ GST numbers (usually 8-9 digits in the format ##-###-### or ##-###-####).
|
|
* @see http://www.ird.govt.nz/payroll-employers/software-developers/software-specs/
|
|
*/
|
|
class GSTNumberField extends TextField {
|
|
|
|
function jsValidation() {
|
|
$formID = $this->form->FormName();
|
|
|
|
$jsFunc =<<<JS
|
|
Behaviour.register({
|
|
"#$formID": {
|
|
validateGSTNumber: function(fieldName) {
|
|
var el = _CURRENT_FORM.elements[fieldName];
|
|
if(!el || !el.value) return true;
|
|
|
|
var value = \$F(el);
|
|
if(value.length > 0 && !value.match(/^[0-9]{2}[\-]?[0-9]{3}[\-]?[0-9]{3,4}\$/)) {
|
|
validationError(el,"Please enter a valid GST Number","validation",false);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
JS;
|
|
Requirements::customScript($jsFunc, 'func_validateGSTNumber');
|
|
|
|
return "\$('$formID').validateGSTNumber('$this->name');";
|
|
}
|
|
|
|
function validate($validator){
|
|
$valid = preg_match(
|
|
'/^[0-9]{2}[\-]?[0-9]{3}[\-]?[0-9]{3,4}$/',
|
|
$this->value
|
|
);
|
|
|
|
if(!$valid){
|
|
$validator->validationError(
|
|
$this->name,
|
|
"Please enter a valid GST Number",
|
|
"validation",
|
|
false
|
|
);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
?>
|