From fd50d5c713878b03fdcd8d21f8209f968fe55646 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Sun, 24 Jun 2012 14:35:23 +0200
Subject: [PATCH] added has() method to input class

---
 inc/Input.class.php | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/inc/Input.class.php b/inc/Input.class.php
index f1967599f..7665c609e 100644
--- a/inc/Input.class.php
+++ b/inc/Input.class.php
@@ -27,6 +27,19 @@ class Input {
         $this->get    = new GetInput();
     }
 
+    /**
+     * Check if a parameter was set
+     *
+     * Basically a wrapper around isset
+     *
+     * @see isset
+     * @param $name Parameter name
+     * @return bool
+     */
+    public function has($name) {
+        return isset($this->access[$name]);
+    }
+
     /**
      * Access a request parameter without any type conversion
      *
-- 
GitLab