Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/Zend/Validate/Between.php')
-rw-r--r--libs/Zend/Validate/Between.php52
1 files changed, 14 insertions, 38 deletions
diff --git a/libs/Zend/Validate/Between.php b/libs/Zend/Validate/Between.php
index 7245295dbb..b9fd7c2dc6 100644
--- a/libs/Zend/Validate/Between.php
+++ b/libs/Zend/Validate/Between.php
@@ -1,4 +1,5 @@
<?php
+
/**
* Zend Framework
*
@@ -14,20 +15,22 @@
*
* @category Zend
* @package Zend_Validate
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Between.php 20096 2010-01-06 02:05:09Z bkarwin $
+ * @version $Id: Between.php 16223 2009-06-21 20:04:53Z thomas $
*/
+
/**
* @see Zend_Validate_Abstract
*/
-// require_once 'Zend/Validate/Abstract.php';
+require_once 'Zend/Validate/Abstract.php';
+
/**
* @category Zend
* @package Zend_Validate
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Validate_Between extends Zend_Validate_Abstract
@@ -88,44 +91,17 @@ class Zend_Validate_Between extends Zend_Validate_Abstract
/**
* Sets validator options
- * Accepts the following option keys:
- * 'min' => scalar, minimum border
- * 'max' => scalar, maximum border
- * 'inclusive' => boolean, inclusive border values
*
- * @param array|Zend_Config $options
+ * @param mixed $min
+ * @param mixed $max
+ * @param boolean $inclusive
* @return void
*/
- public function __construct($options)
+ public function __construct($min, $max, $inclusive = true)
{
- if ($options instanceof Zend_Config) {
- $options = $options->toArray();
- } else if (!is_array($options)) {
- $options = func_get_args();
- $temp['min'] = array_shift($options);
- if (!empty($options)) {
- $temp['max'] = array_shift($options);
- }
-
- if (!empty($options)) {
- $temp['inclusive'] = array_shift($options);
- }
-
- $options = $temp;
- }
-
- if (!array_key_exists('min', $options) || !array_key_exists('max', $options)) {
- // require_once 'Zend/Validate/Exception.php';
- throw new Zend_Validate_Exception("Missing option. 'min' and 'max' has to be given");
- }
-
- if (!array_key_exists('inclusive', $options)) {
- $options['inclusive'] = true;
- }
-
- $this->setMin($options['min'])
- ->setMax($options['max'])
- ->setInclusive($options['inclusive']);
+ $this->setMin($min)
+ ->setMax($max)
+ ->setInclusive($inclusive);
}
/**