| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- <?php
 
- /**
 
-  *
 
-  * Cube Framework $Id$ i6MI1E7m1QlY3549V4YAhWpxUzXq36zNHnSc6afL//Q=
 
-  *
 
-  * @link        http://codecu.be/framework
 
-  * @copyright   Copyright (c) 2017 CodeCube SRL
 
-  * @license     http://codecu.be/framework/license Commercial License
 
-  *
 
-  * @version     1.10 [rev.1.10.01]
 
-  */
 
- /**
 
-  * numeric only validator class
 
-  */
 
- namespace Cube\Validate;
 
- class Numeric extends AbstractValidate
 
- {
 
-     protected $_message = "'%s' must contain a numeric value.";
 
-     /**
 
-      *
 
-      * checks if the variable contains a numeric value
 
-      *
 
-      * @return bool          return true if the validation is successful
 
-      */
 
-     public function isValid()
 
-     {
 
-         $value = $this->getValue();
 
-         if (empty($value)) {
 
-             return true;
 
-         }
 
-         if (!preg_match('#^-?\d*\.?\d+$#', $value)) {
 
-             return false;
 
-         }
 
-         return true;
 
-     }
 
- }
 
 
  |