POST (handler+formular) upraveny tak, aby nabidli udrzitelny interface pro upravy...
[mirrors/SokoMan.git] / index.php
CommitLineData
cdfce7c2
TM
1<?php
2/*
3 * SkladovySystem - Storage management system compatible with LMS
78bf26a5 4 * Copyright (C) 2011 Tomas Mudrunka
cdfce7c2
TM
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20require_once('sklad.conf.php');
21require_once('Sklad_LMS-fake.class.php');
22require_once('HTTP_Auth.class.php');
23
78bf26a5
TM
24/**
25* Trida poskytuje podpurne funkce pro generovani HTML kodu specificke pro sklad
26*
fc5c5b8b
TM
27* Tato trida by nemela sama nic vypisovat (vyjma chybovych a debugovacich hlasek)!
28*
78bf26a5
TM
29* @package Sklad_HTML
30* @author Tomas Mudrunka
31*/
cdfce7c2 32class Sklad_HTML {
fc5c5b8b 33 function header($title='') {
cdfce7c2
TM
34 $home = URL_HOME;
35 $script = $_SERVER['SCRIPT_NAME'];
36 $search = @trim($_GET['q']);
fc5c5b8b 37 return <<<EOF
10562613 38<head>
39 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
40</head>
cdfce7c2
TM
41<h1><a href="$script/">SystémSklad</a><small>$title</small></h1>
42<div>
43 <menu>
44 <li><a href="?logout">Logout</a></li>
45 <li><a href="$script/">Home</a></li>
46 </menu>
47 <form action="?" method="GET">
48 <input type="text" name="q" placeholder="regexp..." value="$search" />
49 <input type="submit" value="filter" />
50 </form>
51 <!-- form action="$script/" method="GET">
52 <input type="text" name="q" placeholder="regexp..." value="$search" />
53 <input type="submit" value="search items" />
54 </form -->
55</div>
56EOF;
57 }
58
fc5c5b8b
TM
59 function row($row) {
60 $html='<tr>';
cdfce7c2
TM
61 foreach($row as $var) {
62 if(trim($var) == '') $var = '&nbsp;';
fc5c5b8b 63 $html.="<td>$var</td>";
cdfce7c2 64 }
fc5c5b8b
TM
65 $html.='</tr>';
66 return $html;
cdfce7c2
TM
67 }
68
fc5c5b8b
TM
69 function table(&$table, $params='border=1') {
70 $html="<table $params>";
cdfce7c2
TM
71 $header=true;
72 foreach($table as $row) {
73 if($header) {
fc5c5b8b 74 $html.=$this->row(array_keys($row));
cdfce7c2
TM
75 $header=false;
76 }
fc5c5b8b 77 $html.=$this->row($row);
cdfce7c2 78 }
fc5c5b8b
TM
79 $html.='</table>';
80 return $html;
cdfce7c2
TM
81 }
82
83 function link($title='n/a', $link='#void', $internal=true) {
84 if($internal) $link = $_SERVER['SCRIPT_NAME'].'/'.$link;
85 return "<a href='$link'>$title</a>";
86 }
87
88 function img($src='#void', $title='img') {
89 return "<img src='$src' alt='$title' title='$title' width=64 />";
90 }
91
92 function table_add_images(&$table) {
93 $image = array('model_id');
94 foreach($table as $id => $row) {
95 foreach($image as $column) if(isset($table[$id][$column])) {
96 $type = @array_shift(preg_split('/_/', $column));
97 $src=URL_IMAGES."/$type/".$table[$id][$column].'.jpg';
98 $table[$id][$type.'_image']=$this->img($src, $table[$id][$column]);
99 }
100 }
101 }
102
103 function table_collapse(&$table) {
104 $collapse = array(
105 'item_id' => 'item_id',
106 'model_id' => 'model_name',
107 'category_id' => 'category_name',
108 'producer_id' => 'producer_name',
109 'vendor_id' => 'vendor_name',
110 'room_id' => 'room_name',
111 'status_id' => 'status_name',
112 );
113 foreach($table as $id => $row) {
114 foreach($collapse as $link => $title)
115 if(isset($table[$id][$link])) {
116 $type = @array_shift(preg_split('/_/', $link));
117 if($link != $title) unset($table[$id][$link]);
118 $table[$id][$title]=$this->link($row[$title], $type.'/'.$row[$link].'/');
119 }
120 }
121 }
122
123 function table_sort(&$table) {
124 $precedence = array('item_id', 'model_image', 'model_name','model_descript','category_name','status_name','room_name');
125 $table_sorted = array();
126 foreach($table as $id => $row) {
127 $table_sorted[$id] = array();
128 foreach($precedence as $column) if(isset($table[$id][$column])) {
129 $table_sorted[$id][$column]=$table[$id][$column];
130 unset($table[$id][$column]);
131 }
132 $table_sorted[$id]=array_merge($table_sorted[$id],$table[$id]);
133 }
134 $table = $table_sorted;
135 }
136
fc5c5b8b 137 function render_item_table($table) {
cdfce7c2
TM
138 $this->table_add_images($table);
139 $this->table_collapse($table);
140 $this->table_sort($table);
fc5c5b8b 141 return $this->table($table);
cdfce7c2
TM
142 }
143
144 function input($name=false, $value=false, $type='text', $placeholder=false, $options=false) {
145 $html = "<input type='$type' ";
146 if($name) $html.= "name='$name' ";
147 if(!is_bool($value)) $html.= "value='$value' ";
148 if($options) $html.= "$options ";
149 if($placeholder) $html.= "placeholder='$placeholder' ";
150 $html .= '/>';
151 return $html;
152 }
153
154 function select($name, $selectbox, $default=false) {
155 //echo('<pre>'); print_r($selectbox);
156 $html = "<select name='$name'>";
157
158 if($default) {
159 $value=$default; $title=$selectbox[$value];
160 $html .= "<option value='$value'>$value :: $title</option>";
161 unset($selectbox[$value]);
162 }
163 foreach($selectbox as $value => $title) {
164 $html .= "<option value='$value'>$value :: $title</option>";
165 }
166 $html .= "</select>";
167 return $html;
168 }
169
fc5c5b8b 170 function render_insert_form($class, $columns, $selectbox=array(), $current=false, $multi_insert=true) {
cdfce7c2
TM
171 //echo('<pre>'); print_r($selectbox);
172 //echo('<pre>'); print_r($current);
173 $update = false;
174 if(is_array($current)) {
175 $update = true;
176 $current = array_shift($current);
177 }
178
fc5c5b8b
TM
179 $html='<form method="POST">';
180 if($multi_insert) $html.='<div name="input_set" style="float:left; border:1px solid grey;">';
371a86f4 181 //$html.=$this->input('table', $class, 'hidden');
cdfce7c2 182 foreach($columns as $column) {
371a86f4 183 $html.=$class.':<b>'.$column['Field'].'</b>: ';
7d20381f 184 $name="values[$class][".$column['Field'].'][]';
e9cb8cea 185 $val = $update ? $current[$column['Field']] : false;
cdfce7c2
TM
186 switch(true) {
187 case preg_match('/auto_increment/', $column['Extra']):
e9cb8cea 188 if(!$val) $val = '';
fc5c5b8b
TM
189 $html.=$this->input($name, $val, 'hidden');
190 $html.=$val.'(AUTO)';
cdfce7c2
TM
191 break;
192 case isset($selectbox[$column['Field']]):
e9cb8cea 193 $html.=$this->select($name,$selectbox[$column['Field']],$val);
cdfce7c2
TM
194 break;
195 default:
fc5c5b8b 196 $html.=$this->input($name, $val);
cdfce7c2
TM
197 break;
198 }
fc5c5b8b 199 $html.='<br />';
cdfce7c2
TM
200 }
201
202 if($multi_insert) {
203 //TODO, move to separate JS file
fc5c5b8b 204 $html.=<<<EOF
cdfce7c2
TM
205 </div>
206 <span name="input_set_next"></span><br style="clear:both" />
207 <script>
208 function duplicate_element(what, where) {
209 document.getElementsByName(where)[0].outerHTML =
210 document.getElementsByName(what)[0].outerHTML
211 + document.getElementsByName(where)[0].outerHTML;
212 }
213 </script>
214 <a href='#' onClick="duplicate_element('input_set', 'input_set_next')">+</a>
215EOF;
216 }
217
218 $btn = is_array($current) ? 'UPDATE' : 'INSERT';
fc5c5b8b
TM
219 $html.=$this->input(false, $btn, 'submit');
220 $html.='</form>';
221 return $html;
cdfce7c2
TM
222 }
223}
224
78bf26a5
TM
225/**
226* Trida poskytuje rozhrani k databazi skladu
227*
228* @package Sklad_DB
229* @author Tomas Mudrunka
230*/
cdfce7c2
TM
231class Sklad_DB extends PDO {
232 function __construct() {
233 $this->lms = new Sklad_LMS();
234
235 parent::__construct(
236 DB_DSN, DB_USER, DB_PASS,
237 array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8") //Force UTF8 for MySQL
238 );
239 }
240
241 function escape($str) {
242 return preg_replace('(^.|.$)', '', $this->quote($str)); //TODO HACK
243 }
244
245 function build_query_select($class, $id=false, $limit=false, $offset=0, $search=false, $id_suffix='_id') {
246 $class = $this->escape($class);
247 $join = array(
248 'item' => array('model', 'category', 'producer', 'vendor', 'room', 'status'),
249 'model' => array('category', 'producer')
250 );
251 $search_fields = array(
252 'item' => array('item_id','model_name','model_barcode','model_descript','producer_name','vendor_name')
253 );
254 $sql="SELECT * FROM $class\n";
255 if(isset($join[$class])) foreach($join[$class] as $j) $sql .= "LEFT JOIN $j USING($j$id_suffix)\n";
256 if($search) {
257 $search = $this->quote($search);
258 if(!isset($search_fields[$class])) {
259 trigger_error("Ve tride $class zatim vyhledavat nemozno :-(");
260 die();
261 }
262 $sql .= 'WHERE FALSE ';
263 foreach($search_fields[$class] as $column) $sql .= "OR $column REGEXP $search ";
264 } elseif($id) $sql .= "WHERE $class$id_suffix = $id\n";
265 if($limit) {
266 $limit = $this->escape((int)$limit);
267 $offset = $this->escape((int)$offset);
268 $sql .= "LIMIT $offset,$limit\n";
269 }
270 return $sql;
271 }
272
273 function safe_query($sql) {
274 $result = $this->query($sql);
275 if(!$result) {
276 trigger_error('<font color=red><b>QUERY FAILED:</b><pre>'.$sql.'</pre></font>');
277 die();
278 }
279 return $result;
280 }
281
282 function get_listing($class, $id=false, $limit=false, $offset=0, $search=false, $indexed=array(), $suffix_id='_id') {
283 $sql = $this->build_query_select($class, $id, $limit, $offset, $search);
284 $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
285 if(!$result || !is_array($indexed)) return $result;
286
287 foreach($result as $key => $row) $indexed[$row[$class.$suffix_id]]=$row;
288 return $indexed;
289 }
290
291 function get_columns($class) {
292 $class = $this->escape($class);
293 $sql = "SHOW COLUMNS FROM $class;";
294 return $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
295 }
296
297 function columns_get_selectbox($columns, $class=false, $suffix_id='_id', $suffix_name='_name') {
298 $selectbox=array();
299 foreach($columns as $column) {
300 if($class && $column['Field'] == $class.$suffix_id) continue;
301 if(!preg_match('/'.$suffix_id.'$/', $column['Field'])) continue;
302 $table=preg_replace('/'.$suffix_id.'$/','',$column['Field']);
303 $sql = "SELECT $table$suffix_id, $table$suffix_name FROM $table;";
304 $result=$this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC);
305 foreach($result as $row) $selectbox[$table.$suffix_id][$row[$table.$suffix_id]]=$row[$table.$suffix_name];
306 }
307 //echo('<pre>'); print_r($selectbox);
308 return $selectbox;
309 }
310
311 function build_query_insert($table, $values, $replace=true, $suffix_id='_id') {
312 $table = $this->escape($table);
313
314 //Get list of POSTed columns
315 $columns = implode(',',array_map(array($this,'escape'), array_keys($values[0])));
316
317 //Insert into table (columns)
318 $sql = 'INSERT';
319 if($replace) $sql = 'REPLACE';
320 $sql .= " INTO $table ($columns) VALUES ";
321
322 //Values (a,b,c),(d,e,f)
323 $comma='';
324 foreach($values as $row) {
325 $sql .= $comma.'('.implode(',',array_map(array($this,'quote'), $row)).')';
326 $comma = ',';
327 }
328
329 //Terminate
330 $sql .= ';';
331 return $sql;
332 }
333
334 function insert_or_update($table, $values) {
335 $sql = $this->build_query_insert($table, $values);
336 $this->safe_query($sql);
337 return $this->lastInsertId();
338 }
339
371a86f4
TM
340 function insert_or_update_multitab($values) {
341 $last=false;
342 foreach($values as $table => $rows) $last = $this->insert_or_update($table, $rows);
343 return $last;
344 }
345
cdfce7c2
TM
346 function delete($table, $id, $suffix_id='_id') {
347 $key = $this->escape($table.$suffix_id);
348 $table = $this->escape($table);
349 $id = $this->quote($id);
350 return $this->safe_query("DELETE FROM $table WHERE $key = $id LIMIT 1;");
351 }
352}
353
78bf26a5
TM
354/**
355* Trida implementuje uzivatelske rozhrani skladu
356*
357* Example usage:
358* $sklad = new Sklad_UI();
359* $sklad->process_http_request();
360*
361* @package Sklad_UI
362* @author Tomas Mudrunka
363*/
cdfce7c2
TM
364class Sklad_UI {
365 function __construct() {
366 $this->db = new Sklad_DB();
367 $this->html = new Sklad_HTML();
368 }
369
a25f85f8
TM
370 function render_items($class, $id=false, $limit=false, $offset=0, $search=false) {
371 return $this->html->render_item_table($this->db->get_listing($class, $id, $limit, $offset, $search));
cdfce7c2
TM
372 }
373
a25f85f8 374 function render_form_add($class) {
cdfce7c2
TM
375 $columns = $this->db->get_columns($class);
376 $selectbox = $this->db->columns_get_selectbox($columns, $class);
a25f85f8 377 return $this->html->render_insert_form($class, $columns, $selectbox);
cdfce7c2
TM
378 }
379
a25f85f8 380 function render_form_edit($class, $id) {
cdfce7c2
TM
381 $columns = $this->db->get_columns($class);
382 $selectbox = $this->db->columns_get_selectbox($columns, $class);
383 $current = $this->db->get_listing($class, $id);
a25f85f8 384 return $this->html->render_insert_form($class, $columns, $selectbox, $current);
cdfce7c2
TM
385 }
386
a25f85f8 387 function render_single_record_details($class, $id) {
cdfce7c2
TM
388 $id_next = $id + 1;
389 $id_prev = $id - 1 > 0 ? $id - 1 : 0;
390 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
391 $html='';
392 $html.= $this->html->link('<<', "$class/$id_prev/");
393 $html.= '-';
394 $html.= $this->html->link('>>', "$class/$id_next/");
395 $html.= '<br />';
396 $html.= $this->html->link('edit', "$class/$id/edit/");
397 return $html;
cdfce7c2
TM
398 }
399
a25f85f8 400 function render_listing_navigation($class, $id, $limit, $offset) {
cdfce7c2
TM
401 $offset_next = $offset + $limit;
402 $offset_prev = $offset - $limit > 0 ? $offset - $limit : 0;
403 $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : '';
a25f85f8
TM
404 $html='';
405 $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get");
406 $html.= '-';
407 $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get");
408 $html.= '<br />';
409 $html.= $this->html->link('new', "$class/new/$get");
410 return $html;
cdfce7c2
TM
411 }
412
a25f85f8
TM
413 function render_listing_extensions($class, $id, $limit, $offset, $edit=false) {
414 $html='';
cdfce7c2 415 if(is_numeric($id)) {
a25f85f8 416 $html.=$this->render_single_record_details($class, $id);
cdfce7c2 417 } else {
a25f85f8 418 $html.=$this->render_listing_navigation($class, '*', $limit, $offset);
cdfce7c2
TM
419 }
420 if($edit) {
a25f85f8
TM
421 $html.='<br />TODO UPDATE FORM!<br />';
422 $html.= $this->render_form_edit($class, $id);
cdfce7c2 423 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/delete";
a25f85f8
TM
424 $html.= "<form action='$action' method='POST'>";
425 $html.= $this->html->input(false, 'DELETE', 'submit');
426 $html.= 'sure?'.$this->html->input('sure', false, 'checkbox');
427 $html.= '</form>';
cdfce7c2 428 $action = $_SERVER['SCRIPT_NAME']."/$class/$id/image";
a25f85f8
TM
429 $html.= "<form action='$action' method='POST' enctype='multipart/form-data'>";
430 $html.= $this->html->input('image', false, 'file', false, 'size="30"');
431 $html.= $this->html->input(false, 'IMAGE', 'submit');
432 $html.='</form>';
cdfce7c2 433 }
a25f85f8 434 return $html;
cdfce7c2
TM
435 }
436
437 function check_auth() {
438 new HTTP_Auth('SkladovejSystem', true, array($this->db->lms,'check_auth'));
439 }
440
441 function post_redirect_get($last, $next) { //TODO prepracovat, tohle je uplna picovina...
442 //header('Location: '.$_SERVER['REQUEST_URI']); //TODO redirect (need templating system or ob_start() first!!!)
443 echo 'Hotovo. Poslední vložený záznam naleznete '.$this->html->link('zde', $last).'.<br />'.
444 'Další záznam přidáte '.$this->html->link('zde', $next).'.';
445 die();
446 }
447
3e6c412e
TM
448 function safe_include($dir,$name,$ext='.inc.php') {
449 if(preg_match('/[^a-zA-Z0-9-]/',$name)) die(trigger_error('SAFE INCLUDE: Securityfuck.'));
450 $filename="$dir/$name$ext";
451 if(!is_file($filename)) die(trigger_error('SAFE INCLUDE: Fuckfound.'));
452 ob_start();
453 include($filename);
454 $out=ob_get_contents();
455 ob_end_clean();
456 return $out;
457 }
458
cdfce7c2
TM
459 function process_http_request_post($action=false, $class=false, $id=false) {
460 if($_SERVER['REQUEST_METHOD'] != 'POST') return;
461 echo('<pre>'); //DEBUG (maybe todo remove)
462
463 //SephirPOST:
371a86f4
TM
464
465 /* Tenhle foreach() prekopiruje promenne
7d20381f 466 * z: $_POST['values'][$table][$column][$id];
371a86f4
TM
467 * do: $values[$table][$id][$column]
468 */
7d20381f
TM
469 if(isset($_POST['values'])) {
470 $values=array();
471 foreach($_POST['values'] as $table => $columns) {
472 foreach($columns as $column => $ids) {
473 foreach($ids as $id => $val) $values[$table][$id][$column] = $val;
474 }
cdfce7c2 475 }
7d20381f 476 //die(print_r($values));
cdfce7c2
TM
477 }
478
479 if($action) switch($action) {
480 case 'new':
481 case 'edit':
371a86f4
TM
482 //if(!isset($_POST['table'])) die(trigger_error("Jest nutno specifikovat tabulku voe!"));
483 //$table=$_POST['table'];
484 $table='item';
cdfce7c2 485 //print_r($values); //debug
371a86f4 486 $last = $this->db->insert_or_update_multitab($values);
cdfce7c2
TM
487 $this->post_redirect_get("$table/$last/", "$table/new/");
488 break;
489 case 'delete':
490 if(!isset($_POST['sure']) || !$_POST['sure']) die(trigger_error('Sure user expected :-)'));
7d20381f
TM
491 $this->db->delete($class, $id);
492 die("Neco (pravdepodobne /$class/$id) bylo asi smazano. Fnuk :'-("); //TODO REDIRECT
cdfce7c2
TM
493 break;
494 case 'image':
495 $image_classes = array('model'); //TODO, use this more widely across the code
496 if(!in_array($class, $image_classes)) die(trigger_error("Nekdo nechce k DB Tride '$class' prirazovat obrazky!"));
497 $image_destination = DIR_IMAGES."/$class/$id.jpg";
498 if($_FILES['image']['name'] == '') die(trigger_error('Kazde neco se musi nejak jmenovat!'));
499 if(move_uploaded_file($_FILES['image']['tmp_name'], $image_destination)) {
500 chmod ($image_destination, 0664);
501 die('Obrazek se naladoval :)'); //TODO REDIRECT
502 } else die(trigger_error('Soubor se nenahral :('));
503 break;
504 default:
505 trigger_error('Nothin\' to do here my cutie :-*');
506 break;
507 }
508
509 die('POSTed pyčo!');
510 }
511
512 function process_http_request() {
513 $this->check_auth();
514
515 @ini_set('magic_quotes_gpc' , 'off');
516 if(get_magic_quotes_gpc()) {
517 die(trigger_error("Error: magic_quotes_gpc needs to be disabled! F00K!"));
518 }
519
520 $PATH_INFO=@trim($_SERVER[PATH_INFO]);
fc5c5b8b 521 echo $this->html->header($PATH_INFO);
cdfce7c2
TM
522
523
524 //Sephirot:
525 $PATH_CHUNKS = preg_split('/\//', $PATH_INFO);
526 if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
527 switch($PATH_CHUNKS[1]) {
528 case 'test': //test
529 die('Tell me why you cry');
530 break;
3e6c412e
TM
531 case 'assistant': //assistant
532 echo $this->safe_include(DIR_ASSISTANTS,$PATH_CHUNKS[2]);
533 break;
cdfce7c2
TM
534 default: //?
535 $search = (isset($_GET['q']) && trim($_GET['q']) != '') ? trim($_GET['q']) : false;
536 $class = (isset($PATH_CHUNKS[1]) && $PATH_CHUNKS[1] != '') ? $PATH_CHUNKS[1] : 'item';
537 if(!isset($PATH_CHUNKS[2])) $PATH_CHUNKS[2]='';
538 switch($PATH_CHUNKS[2]) {
539 case 'new': //?/new
540 $this->process_http_request_post($PATH_CHUNKS[2], $class);
a25f85f8 541 echo $this->render_form_add($class);
cdfce7c2
TM
542 break;
543 default: //?/?
544 $id = (isset($PATH_CHUNKS[2]) && is_numeric($PATH_CHUNKS[2]) ? (int) $PATH_CHUNKS[2] : false);
545 if(!isset($PATH_CHUNKS[3])) $PATH_CHUNKS[3]='';
546 $edit=false;
547 switch($PATH_CHUNKS[3]) {
548 case 'edit': //?/?/edit
549 case 'image': //?/image
550 case 'delete': //?/delete
551 $this->process_http_request_post($PATH_CHUNKS[3], $class, $id);
552 $edit=true;
553 default: //?/?/?
554 $limit = (int) (isset($PATH_CHUNKS[3]) ? $PATH_CHUNKS[3] : '0');
555 $offset = (int) (isset($PATH_CHUNKS[4]) ? $PATH_CHUNKS[4] : '0');
a25f85f8
TM
556 echo $this->render_items($class, $id, $limit, $offset, $search);
557 echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit);
cdfce7c2
TM
558 //print_r(array("<pre>",$_SERVER));
559 break;
560 }
561 break;
562 }
563 break;
564 }
565 }
566}
567
568$sklad = new Sklad_UI();
569$sklad->process_http_request();
570
571echo("<hr/>");
This page took 0.508075 seconds and 4 git commands to generate.