4 |
## $Id$ |
## $Id$ |
5 |
## ----------------------------------------------------------------------------- |
## ----------------------------------------------------------------------------- |
6 |
## $Log$ |
## $Log$ |
7 |
|
## Revision 1.4 2003/04/06 01:41:33 jonen |
8 |
|
## - removed duplicated decode functions |
9 |
|
## |
10 |
|
## Revision 1.3 2003/04/04 23:58:02 jonen |
11 |
|
## + saving of items sould now work with new 'GenericSource' structure |
12 |
|
## |
13 |
|
## Revision 1.2 2003/04/04 00:43:22 jonen |
14 |
|
## + complete rework |
15 |
|
## |
16 |
## Revision 1.1 2003/03/27 01:18:06 jonen |
## Revision 1.1 2003/03/27 01:18:06 jonen |
17 |
## + inital commit (was orginal 'DataItem.php') |
## + inital commit (was orginal 'DataItem.php') |
18 |
## |
## |
45 |
|
|
46 |
class EditDataItem extends StandardFormContent { |
class EditDataItem extends StandardFormContent { |
47 |
|
|
48 |
|
/** |
49 |
|
* holds reference to source object. |
50 |
|
*/ |
51 |
|
var $_datasource = NULL; |
52 |
|
|
53 |
|
/** |
54 |
|
* container for arguments needed for e.g. setting the source object. |
55 |
|
*/ |
56 |
var $_options = array(); |
var $_options = array(); |
57 |
|
|
58 |
var $_confirm_msg = "Die Daten wurden erfolgreich gespeichert!"; |
var $_confirm_msg = "Die Daten wurden erfolgreich gespeichert!"; |
59 |
|
|
60 |
function EditDataItem($options = array()) { |
function EditDataItem($title, $options = array()) { |
61 |
$this->_options = $options; |
$this->_options = $options; |
62 |
|
// prefetch data |
63 |
|
$this->data_prefetch(); |
64 |
|
|
65 |
$parent = get_parent_class($this); |
$parent = get_parent_class($this); |
66 |
$this->$parent($this->_options['caption'], $PHP_SELF, 600); |
$this->$parent($title, $PHP_SELF, 600); |
67 |
} |
} |
68 |
|
|
69 |
function set_data_source(&$source) { |
function set_data_source(&$source) { |
70 |
$this->_source = &$source; |
$this->_datasource = &$source; |
71 |
} |
} |
72 |
|
|
73 |
function get_data_source() { |
function get_data_source() { |
77 |
$this->set_data_source( &$source ); |
$this->set_data_source( &$source ); |
78 |
} |
} |
79 |
|
|
80 |
|
function _check_datasource($function_name) { |
81 |
|
if ( !is_object($this->_datasource) ) { |
82 |
|
user_error("DataList::".$function_name."() - DataListSource object is not set"); |
83 |
|
exit; |
84 |
|
} |
85 |
|
} |
86 |
|
|
87 |
|
function data_prefetch() { |
88 |
|
$this->get_data_source(); |
89 |
|
$this->_check_datasource("data_prefetch"); |
90 |
|
|
91 |
|
$this->_datasource->do_query(); |
92 |
|
} |
93 |
|
|
94 |
/** |
/** |
95 |
* This method gets called EVERY time the object is |
* This method gets called EVERY time the object is |
101 |
//we want an confirmation page for this form. |
//we want an confirmation page for this form. |
102 |
$this->set_confirm(); |
$this->set_confirm(); |
103 |
|
|
104 |
foreach($this->_source->_result as $key => $value) { |
$utils = php::mkComponent('WebExplorer::utils'); |
105 |
|
$hidden = $this->get_hidden_elements(); |
106 |
|
$options = $this->_options['decode_args']; |
107 |
|
|
108 |
|
foreach($this->_datasource->_result as $key => $value) { |
109 |
if($value) { |
if($value) { |
110 |
$validation = TRUE; |
$validation = TRUE; |
111 |
} else { |
} else { |
112 |
$validation = FALSE; |
$validation = FALSE; |
113 |
} |
} |
114 |
if(!$this->decode_item_expr($value, $this->_options) && !$this->decode_item_array($value, $this->_options)) { |
if(!$utils->decode_item_expr($value, $hidden, $options) && !$utils->decode_item_array($value, $hidden, $options)) { |
115 |
$this->add_element( new FEText($key, $validation, "350px") ); |
$this->add_element( new FEText($key, $validation, "350px") ); |
116 |
} |
} |
117 |
} |
} |
129 |
//and set the initial values of some of the |
//and set the initial values of some of the |
130 |
//form fields. |
//form fields. |
131 |
|
|
132 |
foreach($this->_source->_result as $key => $value) { |
$utils = php::mkComponent('WebExplorer::utils'); |
133 |
if(!$this->decode_item_expr($value, $this->_options) && !$this->decode_item_array($value, $this->_options)) { |
$hidden = $this->get_hidden_elements(); |
134 |
|
$options = $this->_options['decode_args']; |
135 |
|
|
136 |
|
foreach($this->_datasource->_result as $key => $value) { |
137 |
|
if(!$utils->decode_item_expr($value, $hidden, $options) && !$utils->decode_item_array($value, $hidden, $options)) { |
138 |
$this->set_element_value($key, $value); |
$this->set_element_value($key, $value); |
139 |
} |
} |
140 |
} |
} |
141 |
|
|
142 |
|
/* OLD !! |
143 |
$post_vars = array_join_merge($_GET, $_POST); |
$post_vars = array_join_merge($_GET, $_POST); |
144 |
foreach ($post_vars as $var => $val) { |
foreach ($post_vars as $var => $val) { |
145 |
$this->set_hidden_element_value($var, $val); |
$this->set_hidden_element_value($var, $val); |
146 |
} |
} |
147 |
|
*/ |
148 |
|
|
149 |
} |
} |
150 |
|
|
156 |
function &_dataitem() { |
function &_dataitem() { |
157 |
$table = &html_table($this->_width,0,2); |
$table = &html_table($this->_width,0,2); |
158 |
|
|
159 |
foreach($this->_source->_result as $key => $value) { |
foreach($this->_datasource->_result as $key => $value) { |
160 |
// if item is match by expression we will replace it with an link object |
// if item is match by expression we will replace it with an link object |
161 |
if($this->decode_item_expr($value, $this->_options) && $this->_options['inheritance']) { |
if($this->_options['decode']) { |
162 |
$table->add_row($key, $this->decode_item_expr($value, $this->_options)); |
$utils = php::mkComponent('WebExplorer::utils'); |
163 |
} |
$hidden = $this->get_hidden_elements(); |
164 |
// if item is an Array we will replace it with an selection form object |
$options = $this->_options['decode_args']; |
165 |
elseif($this->decode_item_array($value, $this->_options) && $this->_options['inheritance']) { |
if($utils->decode_item_expr($value, $hidden, $options)) { |
166 |
$table->add_row($key, $this->decode_item_array($value, $this->_options)); |
$table->add_row($key, $utils->decode_item_expr($value, $hidden, $options)); |
167 |
} |
} |
168 |
else { |
// if item is an Array we will replace it with an selection form object |
169 |
|
elseif($utils->decode_item_array($value, $hidden, $options) ) { |
170 |
|
$table->add_row($key, $utils->decode_item_array($value, $hidden, $options)); |
171 |
|
} else { |
172 |
|
$table->add_row($this->element_label($key), $this->element_form($key)); |
173 |
|
} |
174 |
|
} else { |
175 |
$table->add_row($this->element_label($key), $this->element_form($key)); |
$table->add_row($this->element_label($key), $this->element_form($key)); |
176 |
} |
} |
177 |
} |
} |
227 |
$td = new TDtag(array("colspan" => 2, |
$td = new TDtag(array("colspan" => 2, |
228 |
"class" => "contentnovertical", |
"class" => "contentnovertical", |
229 |
"align" => "center"), |
"align" => "center"), |
230 |
$this->add_action("Confirm"), |
form_submit('ecdfe', "Confirm"), |
231 |
_HTML_SPACE, |
_HTML_SPACE, |
232 |
$this->add_action("Edit")); |
$this->add_action("Edit")); |
233 |
|
|
251 |
*/ |
*/ |
252 |
function confirm_action() { |
function confirm_action() { |
253 |
|
|
254 |
foreach($this->_source->_result as $label => $value_old) { |
$utils = php::mkComponent('WebExplorer::utils'); |
255 |
|
$hidden = $this->get_hidden_elements(); |
256 |
|
$options = $this->_options['decode_args']; |
257 |
|
|
258 |
|
foreach($this->_datasource->_result as $label => $value_old) { |
259 |
|
if(!$utils->decode_item_expr($value_old, $hidden, $options) && !$utils->decode_item_array($value_old, $hidden, $options)) { |
260 |
$value_new = $this->_elements[$label]->get_value(); |
$value_new = $this->_elements[$label]->get_value(); |
261 |
$item[$label] = $value_new; |
$data[$label] = $value_new; |
262 |
|
} |
263 |
} |
} |
264 |
$error = $this->_source->set($item); |
// write new data to datasource |
265 |
|
$this->_options['data_locator_meta']['action'] = "write"; |
266 |
|
$this->_options['data_locator_meta']['data'] = $data; |
267 |
|
// TODO: 'data_prefetch()' will never return ANYTHING! |
268 |
|
// Implement some error-handling there or somewhere. |
269 |
|
$error = $this->data_prefetch(); |
270 |
|
|
271 |
|
//$error = $this->_datasource->set($item); |
272 |
if(!$error) { |
if(!$error) { |
273 |
|
// fetch fresh data |
274 |
|
$this->_options['data_locator_meta']['action'] = "read"; |
275 |
|
// unset previous initialed 'data' var |
276 |
|
$this->_options['data_locator_meta']['data'] = NULL; |
277 |
|
$this->data_prefetch(); |
278 |
|
|
279 |
$this->set_action_message($this->_confirm_msg); |
$this->set_action_message($this->_confirm_msg); |
280 |
return TRUE; |
return TRUE; |
281 |
} else { |
} else { |
283 |
} |
} |
284 |
} |
} |
285 |
|
|
286 |
|
/** |
287 |
function decode_item_array($item, $options=array()) { |
* This function is used to build the standard |
288 |
if( is_array($item) ) { |
* buttons for a form. |
289 |
//$cur_row_index = $this->_datasource->get_cur_data_index(); |
* |
290 |
//$parent_guid = $this->_datasource->_data[$cur_row_index]['guid']; |
* @return ButtonPanel |
291 |
// build list for selection form |
*/ |
292 |
if($options['form']) { |
function form_content_buttons() { |
293 |
foreach($item as $key => $value) { |
$div = new DIVtag( array("style" => "background-color: #eeeeee;". |
294 |
$tmp = split($options['seperator'], $value); |
"padding-top:5px;padding-bottom:5px", |
295 |
$ident = $tmp['1']; |
"align"=>"center", "nowrap"), |
296 |
$meta = $tmp['2']; |
form_submit('ecdfe', "Save"), |
297 |
$list[$key] = $ident; |
_HTML_SPACE, |
298 |
} |
//$this->add_cancel() |
299 |
if(is_array($list) ) { |
form_submit('ecdfc', "Cancel") |
300 |
$container = container( |
); |
301 |
form_open( $item[0], $_SERVER["PHP_SELF"], "POST" ), |
return $div; |
|
form_open("meta", $meta), |
|
|
form_select("ident", $list), |
|
|
form_submit("submit","view" ), |
|
|
form_close() |
|
|
); |
|
|
foreach($this->_hidden_items as $label => $value) { |
|
|
$container->add(form_hidden($label, $value)); |
|
|
} |
|
|
$item = $container; |
|
|
} |
|
|
} else { |
|
|
$container = container(); |
|
|
foreach($item as $key => $value) { |
|
|
$tmp = split($options['seperator'], $value); |
|
|
$ident = $tmp['1']; |
|
|
$meta = $tmp['2']; |
|
|
foreach($this->_hidden_items as $label => $value) { |
|
|
$tmp_array[] = $label . "=" . $value; |
|
|
} |
|
|
$str_hidden = join("&", $tmp_array); |
|
|
$container->add("->", html_a($_SERVER["PHP_SELF"] . "?ident=" . $ident . "&meta=" . $meta . $str_hidden, $key . " view"), html_br()); |
|
|
} |
|
|
$item = $container; |
|
|
} |
|
|
return $item; |
|
302 |
} |
} |
|
} |
|
303 |
|
|
304 |
function decode_item_expr($item, $options=array()) { |
|
305 |
if(substr($item, 0, 2) == "o_") { |
function get_hidden_elements() { |
306 |
$tmp = split($options['seperator'], $item); |
foreach($this->_hidden_elements as $label => $object) { |
307 |
$ident = $tmp['1']; |
$value = $this->_hidden_elements[$label]->get_value(); |
308 |
$meta = $tmp['2']; |
$tmp_array[$label] = $value; |
|
foreach($this->_hidden_items as $label => $value) { |
|
|
$tmp_array[] = $label . "=" . $value; |
|
|
} |
|
|
$str_hidden = join("&", $tmp_array); |
|
|
$item = html_a($_SERVER["PHP_SELF"] . "?ident=" . $guid . "&meta=" . $meta . $str_hidden, "view"); |
|
|
return $item; |
|
309 |
} |
} |
310 |
|
return $tmp_array; |
311 |
} |
} |
312 |
|
|
|
|
|
313 |
} |
} |
314 |
|
|
315 |
|
|