2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
|
|
|
* Specify special required fields to be executed as part of form validation
|
|
|
|
* @package forms
|
|
|
|
* @subpackage validators
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class CustomRequiredFields extends RequiredFields{
|
|
|
|
protected $required;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pass each field to be validated as a seperate argument
|
2008-01-10 01:34:18 +01:00
|
|
|
* @param $required array The list of required fields
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
function __construct($required) {
|
|
|
|
$this->required = $required;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the client side validation from form fields
|
|
|
|
* which is generated at the header of each page
|
|
|
|
*/
|
|
|
|
function javascript() {
|
2007-12-17 22:39:59 +01:00
|
|
|
$code = '';
|
2007-07-19 12:40:28 +02:00
|
|
|
$fields = $this->form->Fields();
|
|
|
|
foreach($fields as $field){
|
|
|
|
//if the field type has some special specific specification for validation of itself
|
|
|
|
$valid = $field->jsValidation();
|
|
|
|
if($valid){
|
|
|
|
$code .= $valid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(is_array($this->required)){
|
|
|
|
|
|
|
|
foreach($this->required as $field) {
|
2008-07-17 23:58:59 +02:00
|
|
|
if(is_array($field) && isset($field['js'])){
|
2007-10-04 23:58:10 +02:00
|
|
|
$code .= $field['js'] . "\n";
|
|
|
|
}else if($fields->dataFieldByName($field)) {
|
|
|
|
$code .= " require('$field');\n";
|
|
|
|
//Tabs for output tabbing :-)
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
USER_ERROR("CustomRequiredFields::requiredfields is not set / not an array",E_USER_WARNING);
|
|
|
|
}
|
|
|
|
return $code;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the server side validation from form fields
|
|
|
|
* which is executed on form submission
|
|
|
|
*/
|
|
|
|
function php($data) {
|
|
|
|
$fields = $this->form->Fields();
|
|
|
|
$valid = true;
|
|
|
|
foreach($fields as $field) {
|
|
|
|
$valid = ($field->validate($this) && $valid);
|
|
|
|
}
|
|
|
|
if($this->required){
|
2008-07-17 23:58:59 +02:00
|
|
|
foreach($this->required as $key => $fieldName) {
|
|
|
|
$formField = $fields->dataFieldByName($fieldName);
|
|
|
|
if(is_array($fieldName) && isset($fieldName['php'])){
|
|
|
|
eval($fieldName['php']);
|
|
|
|
}else if($formField) {
|
2007-10-04 23:58:10 +02:00
|
|
|
// if an error is found, the form is returned.
|
2008-07-17 23:58:59 +02:00
|
|
|
if(!$data[$fieldName] || preg_match('/^\s*$/', $data[$fieldName])) {
|
2007-10-25 04:47:45 +02:00
|
|
|
$this->validationError(
|
2008-07-17 23:58:59 +02:00
|
|
|
$fieldName,
|
2009-04-29 01:52:15 +02:00
|
|
|
sprintf(_t('Form.FIELDISREQUIRED', "%s is required."),
|
2008-07-17 23:58:59 +02:00
|
|
|
$formField->Title()),
|
2007-10-25 04:47:45 +02:00
|
|
|
"required"
|
|
|
|
);
|
2007-10-04 23:58:10 +02:00
|
|
|
return false;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* allows you too add more required fields to this object after construction.
|
|
|
|
*/
|
|
|
|
function appendRequiredFields($requiredFields){
|
|
|
|
$this->required = array_merge($this->required,$requiredFields->getRequired());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-17 23:58:59 +02:00
|
|
|
?>
|