mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3bc0eaafbb
fixed bug on validation of datefield, emailfield, numericefield. make CMS validation enabled. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40755 467b73ca-7a2a-4603-9d3b-597d59a354a9
130 lines
3.1 KiB
PHP
Executable File
130 lines
3.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* This validation class handles all form and custom form validation through
|
|
* the use of Required fields.
|
|
* Relies on javascript for client-side validation, and marking fields after serverside validation.
|
|
*
|
|
* TODO Automatically mark fields after serverside validation and replace the form through
|
|
* FormResponse if the request was made by ajax.
|
|
*
|
|
* @example forms/Form.php See how you can create a form on your controller.
|
|
*/
|
|
|
|
abstract class Validator extends Object {
|
|
protected $form;
|
|
protected $errors;
|
|
|
|
public function __construct() {
|
|
Requirements::javascript('sapphire/javascript/Validator.js');
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
function setForm($form) {
|
|
$this->form = $form;
|
|
}
|
|
|
|
function validate(){
|
|
$this->errors = null;
|
|
$this->php($this->form->getData());
|
|
|
|
return $this->errors;
|
|
}
|
|
|
|
function validationError($fieldName,$message,$messageType){
|
|
$this->errors[] = array(
|
|
'fieldName' => $fieldName,
|
|
'message' => $message,
|
|
'messageType' => $messageType,
|
|
);
|
|
}
|
|
|
|
function showError(){
|
|
debug::show($this->errors);
|
|
}
|
|
|
|
function getCombinedError(){
|
|
if($this->errors) {
|
|
foreach($this->errors as $error){
|
|
$ret['message'] .= $error['message']."<br />";
|
|
$ret['messageType'] .= $error['messageType']."<br />";
|
|
}
|
|
|
|
return $ret;
|
|
}
|
|
}
|
|
function getError(){
|
|
return $this->errors;
|
|
}
|
|
|
|
function requireField($fieldName, $data) {
|
|
if(!$data[$fieldName]) $this->validationError($fieldName, "$fieldName is required", "required");
|
|
}
|
|
|
|
function includeJavascriptValidation() {
|
|
Requirements::javascript("jsparty/prototype.js");
|
|
Requirements::javascript("jsparty/behaviour.js");
|
|
Requirements::javascript("jsparty/prototype_improvements.js");
|
|
Requirements::javascript("sapphire/javascript/Validator.js");
|
|
|
|
$code = $this->javascript();
|
|
$formID = $this->form->FormName();
|
|
$js = <<<JS
|
|
Behaviour.register({
|
|
'#$formID': {
|
|
validate : function(fromAnOnBlur) {
|
|
initialiseForm(this, fromAnOnBlur);
|
|
$code
|
|
|
|
var error = hasHadFormError();
|
|
if(!error && fromAnOnBlur) clearErrorMessage(fromAnOnBlur);
|
|
|
|
return !error;
|
|
},
|
|
onsubmit : function() {
|
|
return this.validate();
|
|
}
|
|
},
|
|
'#$formID input' : {
|
|
initialise: function() {
|
|
if(!this.old_onblur) this.old_onblur = function() { return true; }
|
|
if(!this.old_onfocus) this.old_onfocus = function() { return true; }
|
|
},
|
|
onblur : function() {
|
|
if(this.old_onblur()) {
|
|
return $('$formID').validate(this);
|
|
}
|
|
}
|
|
},
|
|
'#$formID select' : {
|
|
initialise: function() {
|
|
if(!this.old_onblur) this.old_onblur = function() { return true; }
|
|
},
|
|
onblur : function() {
|
|
if(this.old_onblur()) {
|
|
return $('$formID').validate(this);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
// TODO Performance-issue: Behaviour is possibly applied twice
|
|
Behaviour.apply('#$formID');
|
|
JS;
|
|
|
|
Requirements::customScript($js);
|
|
}
|
|
|
|
/**
|
|
* Returns true if the named field is "required".
|
|
* Used by FormField to return a value for FormField::Required(), to do things like show *s on the form template.
|
|
* By default, it always returns false.
|
|
*/
|
|
function fieldIsRequired($fieldName) {
|
|
return false;
|
|
}
|
|
|
|
abstract function javascript();
|
|
|
|
abstract function php($data);
|
|
}
|
|
?>
|