LSformRule_integer : Added integer form rule

This commit is contained in:
Benjamin Renard 2010-07-30 18:07:39 +02:00
parent d14127d810
commit 21969b47d3
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<sect4 id="config-LSattribute-check-data-integer">
<title>integer</title>
<para>Cette règle vérifie que la valeur saisie est un entier. Les paramètres
permettent de spécifier éventuellement si la valeur doit être positive ou négative.</para>
<variablelist>
<title>Paramêtres de configuration</title>
<varlistentry>
<term>positive</term>
<listitem>
<simpara>Booléen définissant si la valeur doit être positive.</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>negative</term>
<listitem>
<simpara>Booléen définissant si la valeur doit être negative.</simpara>
</listitem>
</varlistentry>
</variablelist>
</sect4>

View file

@ -0,0 +1,55 @@
<?php
/*******************************************************************************
* Copyright (C) 2007 Easter-eggs
* http://ldapsaisie.labs.libre-entreprise.org
*
* Author: See AUTHORS file in top-level directory.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
******************************************************************************/
/**
* Validation rule for an integer value
*
* @author Benjamin Renard <brenard@easter-eggs.com>
*/
class LSformRule_integer extends LSformRule{
/**
* Verification value.
*
* @param string $values The value
* @param array $options Validation options
* @param object $formElement The formElement object
*
* @return boolean true if the value is valided, false otherwise
*/
function validate ($value,$options=array(),$formElement) {
if($options['params']['negative']) {
$regex = '/^-[0-9]*$/';
}
elseif($options['params']['positive']) {
$regex = '/^[0-9]*$/';
}
else {
$regex = '/^-?[0-9]*$/';
}
LSsession :: loadLSclass('LSformRule_regex');
return LSformRule_regex :: validate($value,$regex,$formElement);
}
}
?>