hledani v carovejch kodech
[mirrors/SokoMan.git] / assistants / store-single.inc.php
1 <?php
2 die(T('Hors service!'));
3 $this->process_http_request_post('new', false, false, "$URL_INTERNAL/2");
4 switch($SUBPATH[0]) {
5 default: case 1:
6 echo $this->render_form_add('model');
7 break;
8 case 2: //TODO: reuse assistants/store for this step
9 $model_id = trim($_GET['last']);
10 $columns = $this->db->get_columns('item');
11 $selectbox = $this->db->columns_get_selectbox($columns, 'item');
12
13 $current = array(array(
14 'model_id' => $model_id,
15 'item_quantity' => 1,
16 'status_id' => 1,
17 'item_author' => $this->db->auth->get_user_id()
18 ));
19
20 $action = $_SERVER['SCRIPT_NAME'].'/item/new';
21 echo $this->html->render_insert_form('item', $columns, $selectbox, $current, false, $action);
22 break;
23 }
This page took 0.298782 seconds and 4 git commands to generate.