]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: New chhtp php class
authorDavide Franco <bacula-dev@dflc.ch>
Mon, 18 Jul 2011 06:00:25 +0000 (08:00 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:25 +0000 (14:49 +0200)
gui/bacula-web/includes/utils/chttp.class.php [new file with mode: 0644]

diff --git a/gui/bacula-web/includes/utils/chttp.class.php b/gui/bacula-web/includes/utils/chttp.class.php
new file mode 100644 (file)
index 0000000..136e261
--- /dev/null
@@ -0,0 +1,46 @@
+<?php
+/* 
++-------------------------------------------------------------------------+
+| Copyright 2010-2011, Davide Franco                                             |
+|                                                                         |
+| This program is free software; you can redistribute it and/or           |
+| modify it under the terms of the GNU General Public License             |
+| as published by the Free Software Foundation; either version 2          |
+| of the License, or (at your option) any later version.                  |
+|                                                                         |
+| This program is distributed in the hope that it will be useful,         |
+| but WITHOUT ANY WARRANTY; without even the implied warranty of          |
+| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
+| GNU General Public License for more details.                            |
++-------------------------------------------------------------------------+ 
+*/
+       class CHttp
+       {
+               private function getSafeValue( $value )
+               {
+                       return $safe_value;
+               }
+               
+               // Return an array of $_POST or $_GET values
+               // If the value doesn't exist, the return value is FALSE
+               public static function getRequestVars( $type = 'POST', $vars = array() )
+               {
+                       $values = array();
+                       
+                       if( count($vars) > 0 )
+                               
+                       
+                       switch( $type )
+                       {
+                               case 'GET':
+
+                               break;
+                               case 'POST':
+
+                               break;
+                       }
+                       return false;
+               }
+       }
+
+?>
\ No newline at end of file