parent
7899fe2899
commit
9080363d48
@ -1,21 +1,22 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* QuickForm rule to check a text field has a minimum of X chars |
* QuickForm rule to check a text field has a minimum of X chars |
||||||
* @package chamilo.include |
* @package chamilo.include |
||||||
*/ |
*/ |
||||||
class Html_Quickform_Rule_MinText extends HTML_QuickForm_Rule |
class Html_Quickform_Rule_MinText extends HTML_QuickForm_Rule |
||||||
{ |
{ |
||||||
/** |
/** |
||||||
* Function to check a text field has a minimum of X chars |
* Function to check a text field has a minimum of X chars |
||||||
* @see HTML_QuickForm_Rule |
* @see HTML_QuickForm_Rule |
||||||
* @param string $text A text |
* @param string $text A text |
||||||
* @param int $count The minimum number of characters that the text should contain |
* @param int $count The minimum number of characters that the text should contain |
||||||
* @return boolean True if text has the minimum number of chars required |
* @return boolean True if text has the minimum number of chars required |
||||||
*/ |
*/ |
||||||
function validate($text, $count) |
function validate($text, $count) |
||||||
{ |
{ |
||||||
$checkMinText = create_function('$a,$b', 'return strlen(utf8_decode($a)) >= $b;'); |
$checkMinText = create_function('$a,$b', 'return strlen(utf8_decode($a)) >= $b;'); |
||||||
return $checkMinText($text, $count); |
return $checkMinText($text, $count); |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue