mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 08:39:06 +01:00
LSformRule_integer: fix handle min/max parameters and add debug
This commit is contained in:
parent
694391e1e7
commit
90944dd541
1 changed files with 11 additions and 3 deletions
|
@ -42,12 +42,16 @@ class LSformRule_integer extends LSformRule{
|
||||||
*/
|
*/
|
||||||
public static function validate ($value,$options=array(),$formElement) {
|
public static function validate ($value,$options=array(),$formElement) {
|
||||||
$max = LSconfig :: get('params.max', null, 'int', $options);
|
$max = LSconfig :: get('params.max', null, 'int', $options);
|
||||||
if(is_int($max) && $value > $max)
|
if(is_int($max) && $max != 0 && $value > $max) {
|
||||||
|
self :: log_debug("value is too higth ($value > $max)");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$min = LSconfig :: get('params.min', null, 'int', $options);
|
$min = LSconfig :: get('params.min', null, 'int', $options);
|
||||||
if(is_int($min) && $value < $min)
|
if(is_int($min) && $min != 0 && $value < $min) {
|
||||||
|
self :: log_debug("value is too low ($value < $min)");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if(LSconfig :: get('params.negative', false, 'bool', $options)) {
|
if(LSconfig :: get('params.negative', false, 'bool', $options)) {
|
||||||
$regex = '/^-[0-9]*$/';
|
$regex = '/^-[0-9]*$/';
|
||||||
|
@ -59,7 +63,11 @@ class LSformRule_integer extends LSformRule{
|
||||||
$regex = '/^-?[0-9]*$/';
|
$regex = '/^-?[0-9]*$/';
|
||||||
}
|
}
|
||||||
LSsession :: loadLSclass('LSformRule_regex');
|
LSsession :: loadLSclass('LSformRule_regex');
|
||||||
return LSformRule_regex :: validate($value,$regex,$formElement);
|
if (!LSformRule_regex :: validate($value,$regex,$formElement)) {
|
||||||
|
self :: log_debug("value '$value' does not respect regex '$regex'");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue