Pridana podpora relacnich linku nesouvisejicich s DB
authorThomas Mudrunka <tomas@mudrunka.cz>
Fri, 21 Oct 2011 13:28:28 +0000 (15:28 +0200)
committerThomas Mudrunka <tomas@mudrunka.cz>
Fri, 21 Oct 2011 13:28:28 +0000 (15:28 +0200)
assistants/store.inc.php
index.php

index fcc420f55aadaf440831f5a135bb02281504c7ff..f9725765a16739dd2e05fc020aa8f72d862bd321 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 switch($SUBPATH[0]) {
        default: case 1:
+               $barcode = isset($_GET['barcode']) ? htmlspecialchars($_GET['barcode']) : ''; //TODO: XSS
                echo $this->html->form("$URL/2", 'GET', array(
-                       array('barcode','','text',false,'autofocus','model_barcode:'),
+                       array('barcode',$barcode,'text',false,'autofocus','model_barcode:'),
                        array('quantity','1','text',false,false,'quantity:'),
                        array(false,'STORE','submit')
                ));
index 98f6c15ea3d887abc7f159e19672fc6087ad688c..c1d366072753d374a9be4b8e8c349ac8d29970ac 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -288,19 +288,28 @@ EOF;
        }
 
        function table_add_relations(&$table, $class, $suffix_relations='_relations') {
+               $where_url = '%d/?where[%c]==%v';
                $relations = array( //TODO: Autodetect???
-                       'model' => array('model_id' => array('item')),
-                       'category' => array('category_id' => array('item')),
-                       'producer' => array('producer_id' => array('item')),
-                       'vendor' => array('vendor_id' => array('item')),
-                       'room' => array('room_id' => array('item')),
-                       'status' => array('status_id' => array('item')),
+                       'model' => array(
+                               'model_id' => array(array('item',$where_url)),
+                               'model_barcode' => array(array('store','assistant/%d?barcode=%v'))
+                       ),
+                       'category' => array('category_id' => array(array('item',$where_url))),
+                       'producer' => array('producer_id' => array(array('item',$where_url))),
+                       'vendor' => array('vendor_id' => array(array('item',$where_url))),
+                       'room' => array('room_id' => array(array('item',$where_url))),
+                       'status' => array('status_id' => array(array('item',$where_url)))
                );
                foreach($table as $id => $row) {
                        foreach($row as $column => $value) {
                                if(isset($relations[$class][$column])) {
                                        foreach($relations[$class][$column] as $destination) {
-                                               @$table[$id][$class.$suffix_relations] .= $this->link($destination, "$destination/?where[$column]==$value").',';
+                                               $destination_url = str_replace(
+                                                       array('%d','%c','%v'),
+                                                       array($destination[0],$column,$value),
+                                                       $destination[1]
+                                               );
+                                               @$table[$id][$class.$suffix_relations] .= $this->link($destination[0], $destination_url).',';
                                        }
                                }
                        }
@@ -344,8 +353,8 @@ EOF;
 
        function render_item_table($table,$class=false) {
                $this->table_add_images($table);
-               $this->table_add_barcodes($table);
                if($class) $this->table_add_relations($table,$class);
+               $this->table_add_barcodes($table);
                $this->table_collapse($table);
                $this->table_sort($table);
                return $this->table($table);
This page took 0.141458 seconds and 4 git commands to generate.