Pokus o vyreseni tabulky co ujizdi pri nacitani obrazku
[mirrors/SokoMan.git] / index.php
index dcdb56d07e4b57602271e9c31ce8433447d2d154..d6eb6606dcfea5dbeb0da7a966a0aa109eac4783 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -35,32 +35,35 @@ require_once('Fortune.php');
 * @author   Tomas Mudrunka
 */
 class HTML {
-       function row($row,$type=false,$class=false) {
+       function row($row,$type=false,$class=false,$parameters='') {
                $html = '';
                $class = $class ? $class=" class='$class' " : '';
                if($type) $html.="<$type>";
-               $html.="<tr$class>";
+               $html.="<tr$class$parameters>";
                $td = $type == 'thead' ? 'th' : 'td';
-               foreach($row as $var) {
+               foreach($row as $id => $var) {
+                       $tdclass = " class='cell_$id'";
                        if(trim($var) == '') $var = '&nbsp;';
-                       $html.="<$td>$var</$td>";
+                       $html.="<$td$tdclass>$var</$td>";
                }
                $html.='</tr>';
                if($type) $html.="</$type>";
                return $html;
        }
 
-       function table(&$table, $parity_class=array('tr_odd','tr_even'), $params='border=1') {
+       function table(&$table, $parity_class=array('tr_odd','tr_even'), $params='border=1', $row_params_field='_row_parameters') {
                $html="<table $params>";
                $header=true;
                $even=false;
                foreach($table as $row) {
+                       $params = isset($row[$row_params_field]) ? $row[$row_params_field] : '';
+                       unset($row[$row_params_field]);
                        if($header) {
-                               $html.=$this->row(array_keys($row),'thead');
+                               $html.=$this->row(T(array_keys($row)),'thead');
                                $header=false;
                        }
                        $class = $parity_class ? $parity_class[$even] : false;
-                       $html.=$this->row($row,false,$class);
+                       $html.=$this->row($row,false,$class.$params);
                        $even = !$even;
                }
                $html.='</table>';
@@ -73,12 +76,12 @@ class HTML {
                return "<a href='$link'>".$title."</a>";
        }
 
-       function img($src='#void', $title='img', $options='width=64') {
+       function img($src='#void', $title='img', $options='height=64') {
                $options = $options ? " $options" : '';
                return "<img src='$src' alt='$title' title='$title'$options; />";
        }
 
-       function img_link($src, $link='#void', $title='img_link', $internal=true, $translate=true, $options='width=64') {
+       function img_link($src, $link='#void', $title='img_link', $internal=true, $translate=true, $options='height=64') {
                return $this->link($this->img($src,$title,$options),$link,$internal,$translate);
        }
 
@@ -204,6 +207,13 @@ table { background-color: orange; border: orange; }
 a, a img { text-decoration:none; color: darkblue; border:none; }
 li a, a:hover { text-decoration:underline; }
 .tr_even td { background-color: lemonchiffon; }
+.item_status_stored td { font-weight:bold; }
+.item_status_deleted td { text-decoration:line-through; }
+.item_status_destroyed td { font-style:italic; }
+/* table, table * { table-layout:fixed; width:100%; overflow:hidden; word-wrap:break-word; } */
+/* td { position:absolute; } */
+.cell_model_name { }
+
 
 .menu li {
        float: left;
@@ -325,6 +335,15 @@ EOF;
                }
        }
 
+       function table_add_row_parameters(&$table, $param_col='_row_parameters') { //TODO: rename to table_add_row_classes()
+               $image = array('status_name' => ' item_status_');
+               foreach($table as $id => $row) {
+                       foreach($image as $column => $param) if(isset($table[$id][$column])) {
+                               @$table[$id][$param_col] .= $param.$table[$id][$column];
+                       }
+               }
+       }
+
        function table_add_relations(&$table, $class, $suffix_relations='_relations') {
                $where_url = '%d/?where[%c]==%v';
                $relations = array( //TODO: Autodetect???
@@ -405,11 +424,11 @@ EOF;
                foreach($table as $id => $row) {
                        $table_sorted[$id] = array();
                        foreach($precedence as $column) if(isset($table[$id][$column])) {
-                               $table_sorted[$id][T($column)]=$table[$id][$column];
+                               $table_sorted[$id][$column]=$table[$id][$column];
                                unset($table[$id][$column]);
                        }
-                       //$table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
-                       foreach($table[$id] as $key => $val) $table_sorted[$id][T($key)] = $val; //array_merge with T() translating
+                       $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
+                       //foreach($table[$id] as $key => $val) $table_sorted[$id][T($key)] = $val; //array_merge with T() translating
                }
                $table = $table_sorted;
        }
@@ -426,6 +445,7 @@ EOF;
 
        function render_item_table($table,$class=false) {
                if(empty($table)) return '<h3>'.T('holy primordial emptiness is all you can find here...').'</h3><br />';
+               $this->table_add_row_parameters($table);
                $this->table_add_images($table);
                if($class) $this->table_add_relations($table,$class);
                $this->table_add_barcodes($table);
This page took 0.220627 seconds and 4 git commands to generate.