[Pieforms-commit] SF.net SVN: pieforms: [221] pieforms-php5/trunk/src/pieform/rules
Status: Alpha
Brought to you by:
oracleshinoda
From: <ora...@us...> - 2007-10-26 02:01:28
|
Revision: 221 http://pieforms.svn.sourceforge.net/pieforms/?rev=221&view=rev Author: oracleshinoda Date: 2007-10-25 19:01:29 -0700 (Thu, 25 Oct 2007) Log Message: ----------- Added rules for ensuring that a value is at least or most a certain size. Added Paths: ----------- pieforms-php5/trunk/src/pieform/rules/maxvalue.php pieforms-php5/trunk/src/pieform/rules/minvalue.php Added: pieforms-php5/trunk/src/pieform/rules/maxvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/maxvalue.php (rev 0) +++ pieforms-php5/trunk/src/pieform/rules/maxvalue.php 2007-10-26 02:01:29 UTC (rev 221) @@ -0,0 +1,50 @@ +<?php +/** + * This program is part of Pieforms + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * @package pieform + * @subpackage rule + * @author Nigel McNie <ni...@ca...> + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL + * @copyright (C) 2006 Catalyst IT Ltd http://catalyst.net.nz + * + */ + +/** + * Checks whether the given value is at most a certain size. + * + * @param Pieform $form The form the rule is being applied to + * @param string $value The value to check + * @param array $element The element to check + * @param int $maxvalue The value to check for + * @return string The error message, if the value is invalid. + */ +function pieform_rule_maxvalue(Pieform $form, $value, $element, $maxvalue) { + if ($value != '' && intval($value) > $maxvalue) { + return sprintf($form->i18n('rule', 'maxvalue', 'maxvalue', $element), $maxvalue); + } +} + +function pieform_rule_maxvalue_i18n() { + return array( + 'en.utf8' => array( + 'maxvalue' => 'This value can not be larger than %d' + ), + ); +} + +?> Added: pieforms-php5/trunk/src/pieform/rules/minvalue.php =================================================================== --- pieforms-php5/trunk/src/pieform/rules/minvalue.php (rev 0) +++ pieforms-php5/trunk/src/pieform/rules/minvalue.php 2007-10-26 02:01:29 UTC (rev 221) @@ -0,0 +1,50 @@ +<?php +/** + * This program is part of Pieforms + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * @package pieform + * @subpackage rule + * @author Nigel McNie <ni...@ca...> + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL + * @copyright (C) 2006 Catalyst IT Ltd http://catalyst.net.nz + * + */ + +/** + * Checks whether the given value is at least a certain size. + * + * @param Pieform $form The form the rule is being applied to + * @param string $value The value to check + * @param array $element The element to check + * @param int $maxlength The value to check for + * @return string The error message, if the value is invalid. + */ +function pieform_rule_minvalue(Pieform $form, $value, $element, $minvalue) { + if ($value != '' && intval($value) < $minvalue) { + return sprintf($form->i18n('rule', 'minvalue', 'minvalue', $element), $minvalue); + } +} + +function pieform_rule_minvalue_i18n() { + return array( + 'en.utf8' => array( + 'minvalue' => 'This value can not be smaller than %d' + ), + ); +} + +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |