mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
API CHANGE Removed deprecated CustomValidator class
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64372 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
f7a0c5db04
commit
b45e583d29
@ -1,27 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Custom javascript validation
|
||||
* @package forms
|
||||
* @subpackage validators
|
||||
* @deprecated How is this better than / different from {@link CustomRequiredFields}?
|
||||
*/
|
||||
class CustomValidator extends Validator {
|
||||
protected $javascriptCode;
|
||||
function __construct($javascriptCode) {
|
||||
$this->javascriptCode = $javascriptCode;
|
||||
}
|
||||
|
||||
function javascript() {
|
||||
return $this->javascriptCode;
|
||||
}
|
||||
|
||||
function php($data) {
|
||||
$valid = true;
|
||||
foreach($this->form->Fields() as $field) {
|
||||
$valid = ($field->validate($this) && $valid);
|
||||
}
|
||||
return $valid;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user