Adjusted time.php to honor note on separate row option.
[timetracker.git] / WEB-INF / lib / html / HttpRequest.class.php
index cea6122..2eb26f0 100644 (file)
@@ -32,22 +32,27 @@ class ttHttpRequest {
     return isset( $_SERVER['REQUEST_METHOD'] ) ? $_SERVER['REQUEST_METHOD'] : false;
   }
 
-  // The isPost function determines if a request method is POST.
+  // The isGet function determines if a request method is a GET.
+  function isGet() {
+    return ($this->getMethod() == 'GET');
+  }
+
+  // The isPost function determines if a request method is a POST.
   function isPost() {
     return ($this->getMethod() == 'POST');
   }
 
-  // The getParameter is the primary function of this class. It returns request parameter,
+  // The getParameter is the primary function of this class. It returns request parameter
   // identified by $name.
-  function getParameter($name = "", $default = null) { 
+  function getParameter($name = '', $default = null) {
     switch ($this->getMethod())
     {
       case 'GET':
-               if (isset($_GET[$name]) && ($_GET[$name] != ""))
+        if (isset($_GET[$name]) && ($_GET[$name] != ''))
           return $_GET[$name];
 
       case 'POST':
-        if (isset($_POST[$name]) && ($_POST[$name] != ""))
+        if (isset($_POST[$name]) && ($_POST[$name] != ''))
           return  $_POST[$name];
     }
     return $default;