1
0
Fork 0

initial commit

This commit is contained in:
fanir 2015-11-13 23:51:46 +01:00
commit 1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/libraries/Nibble-Forms/Nibble/NibbleForms/Field

View file

@ -0,0 +1,32 @@
<?php
namespace Nibble\NibbleForms\Field;
use Nibble\NibbleForms\Useful;
class Number extends Text
{
public function validate($val)
{
if (!empty($this->error)) {
return false;
}
if (parent::validate($val))
if (Useful::stripper($val) !== false) {
if (!filter_var($val, FILTER_VALIDATE_FLOAT)) {
$this->error[] = 'must be numeric';
}
}
return !empty($this->error) ? false : true;
}
public function returnField($form_name, $name, $value = '')
{
$this->field_type = 'number';
return parent::returnField($form_name, $name, $value);
}
}