getParamName(), $getParamArray)) { $value = $getParamArray[$this->getParamName()]; if (empty($value)) { if ($this->getParamCondition() === self::PARAM_CONDITION_EMPTY) { return true; } } else { if ($this->getParamCondition() === self::PARAM_CONDITION_NOT_EMPTY) { return true; } } if ($value == $this->getParamValue()) { if ($this->getParamCondition() === self::PARAM_CONDITION_EQUALS) { return true; } } else { if ($this->getParamCondition() === self::PARAM_CONDITION_NOT_EQUALS) { return true; } } if ($this->getParamCondition() === self::PARAM_CONDITION_EXISTS) { return true; } } else { if ($this->getParamCondition() === self::PARAM_CONDITION_MISSING) { return true; } } return false; } }