Hledej polozku
[mirrors/SokoMan.git] / index.php
index 630d7ee46d1da8d892cc25f9e097f52e6e749681..67f38433d2d94180567ac6d3767feaae392471d0 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -1,7 +1,7 @@
 <?php
 /*
  * SkladovySystem - Storage management system compatible with LMS
- * Copyright (C) 2011  Tomas Mudrunka
+ * Copyright (C) 2011-2012  Tomas 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
@@ -22,6 +22,7 @@ set_include_path(DIR_LIB.PATH_SEPARATOR.get_include_path());
 
 require_once('Sklad_Auth.class/common.php');
 require_once('HTTP_Auth.class.php');
+require_once('Query.class.php');
 require_once('Locale.class.php');
 require_once('Barcode.class.php');
 require_once('Fortune.php');
@@ -64,7 +65,7 @@ class HTML {
                        unset($row[$row_classes_field]);
                        if($header) {
                                $keys = array(); foreach($row as $key => $val) {
-                                       $order= $orderby ? ' '.
+                                       $order= $orderby ? '&nbsp;'.
                                                $this->link('&uarr;', $orderby."[$key]=ASC").
                                                $this->link('&darr;', $orderby."[$key]=DESC") : '';
                                        $keys[$key]=T($key).$order;
@@ -306,7 +307,7 @@ EOF;
 
        $html .= $this->form("$script/item", 'GET', array(
                array('q',$search,'text','regexp...','autofocus'),
-               array(false,'search','submit')
+               array(false,'search item','submit')
        ), 'style="float: left;"');
 
        $html .= '</div>';
@@ -478,7 +479,6 @@ EOF;
        }
 
        function render_item_table($table,$class=false) {
-
                $cellspan = array(
                        'break_after' => array(
                                'item' => array('category_name'),
@@ -506,12 +506,12 @@ EOF;
                if($class) $this->table_hide_columns($table,$class);
                $this->table_sort($table);
 
-               //TODO: orderbaj fixme (napsat funkci na pridavani/ubirani soucasnych URL parametru)
-               $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
-               $moreget = isset($get[0]) ? '&' : '?';
-               $path=$_SERVER['PATH_INFO'].$get.$moreget;
+               //Orderby:
+               $path = $_GET;
+               unset($path['orderby']);
+               $path = $_SERVER['PATH_INFO'].'?'.Query::build($path).'orderby';
 
-               return $this->table($table,$colspan,$rowspan,$break_after,$path.'orderby');
+               return $this->table($table,$colspan,$rowspan,$break_after,$path);
        }
 
        function render_insert_inputs($class,$columns,$selectbox,$current,$hidecols,$update) {
@@ -697,7 +697,12 @@ class Sklad_DB extends PDO {
                $sql.=$group_by;
 
                //ORDER
-               if(!$order) $order = $class.$suffix_id.' DESC';
+               $orders=$order;
+               $order='';
+               if(is_array($orders)) foreach($orders as $column => $direction) {
+                       $order="$column $direction,";
+               }
+               $order .= $class.$suffix_id.' DESC';
                if($this->contains_history($class)) $order .= ",${class}_valid_from DESC";
                $sql .= "ORDER BY $order\n";
                //LIMIT/OFFSET
@@ -750,7 +755,8 @@ class Sklad_DB extends PDO {
        }
 
        function get_listing($class, $id=false, $limit=false, $offset=0, $where=false, $search=false, $history=false, $indexed=array(), $suffix_id='_id') {
-               $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history);
+               $order = isset($_GET['orderby']) ? $_GET['orderby'] : false;
+               $sql = $this->build_query_select($class, $id, $limit, $offset, $where, $search, $history, $order);
                $result = $this->safe_query_fetch($sql);
                if(!$result || !is_array($indexed)) return $result;
 
This page took 0.111119 seconds and 4 git commands to generate.