Knihovna pro generovani query stringu, fix blbosti s orderby
[mirrors/SokoMan.git] / lib / Query.class.php
diff --git a/lib/Query.class.php b/lib/Query.class.php
new file mode 100755 (executable)
index 0000000..48a2bb0
--- /dev/null
@@ -0,0 +1,39 @@
+<?php
+/*
+ * Query Manipulation Class
+ * Copyright (C) 2012  Thomas Mudrunka
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/**
+* Trida implementuje funkce pro manipulaci s query stringem
+*
+* @package  Query
+* @author   Tomas Mudrunka
+*/
+class Query {
+
+       static function build($query=array(),$prefix=false) {
+               $q='';
+               if(is_array($query)) foreach($query as $key => $val) {
+                       $pre = !$prefix ? $key : $prefix.'['.$key.']';
+                       $q.=Query::build($val,$pre);
+               } else {
+                       return $prefix.'='.$query.'&';
+               }
+               return $q;
+       }
+
+}
This page took 0.092986 seconds and 4 git commands to generate.