Allowed space and square brackets in button names
[fa-stable.git] / includes / ui / ui_input.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //
13 // Sets local POST value and adds Value to ajax posting if needed
14 //
15 /*function set_post($name, $value, $ajax_trigger=true) {
16     global $Ajax;
17
18     $_POST[$name] = $value;
19     if ($ajax_trigger) $Ajax->activate($name);
20 }
21 */
22 //------------------------------------------------------------------------------
23 //    Seek for _POST variable with $prefix.
24 //    If var is found returns variable name with prefix stripped,
25 //    and null or -1 otherwise.
26 //
27 function find_submit($prefix, $numeric=true)
28 {
29
30     foreach($_POST as $postkey=>$postval )
31     {
32                 if (strpos($postkey, $prefix) === 0)
33                 {
34                         $id = substr($postkey, strlen($prefix));
35                         return $numeric ? (int)$id : $id;
36                 }
37     }
38     return $numeric ? -1 : null;
39 }
40 //------------------------------------------------------------------------------
41 //
42 // Helper function for simple db table editor pages
43 //
44 function simple_page_mode($numeric_id = true)
45 {
46         global $Ajax, $Mode, $selected_id;
47
48         $default = $numeric_id ? -1 : '';
49         $selected_id = get_post('selected_id', $default);
50         foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET', 'CLONE') as $m) {
51                 if (isset($_POST[$m])) {
52                         $Ajax->activate('_page_body');
53                         if ($m == 'RESET'  || $m == 'CLONE') 
54                                 $selected_id = $default;
55                         unset($_POST['_focus']);
56                         $Mode = $m; return;
57                 }
58         }
59         foreach (array('Edit', 'Delete') as $m) {
60                 foreach ($_POST as $p => $pvar) {
61                         if (strpos($p, $m) === 0) {
62 //                              $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
63                                 unset($_POST['_focus']); // focus on first form entry
64                                 $selected_id = quoted_printable_decode(substr($p, strlen($m)));
65                                 $Ajax->activate('_page_body');
66                                 $Mode = $m;
67                                 return;
68                         }
69                 }
70         }
71         $Mode = '';
72 }
73
74 //------------------------------------------------------------------------------
75 //
76 //      Read numeric value from user formatted input
77 //
78 function input_num($postname=null, $dflt=0)
79 {
80         if (!isset($_POST[$postname]) || $_POST[$postname] == "")
81                 return $dflt;
82
83     return user_numeric($_POST[$postname]);
84 }
85
86 //---------------------------------------------------------------------------------
87
88 function hidden($name, $value=null, $echo=true)
89 {
90         global $Ajax;
91         
92         if ($value === null) 
93                 $value = get_post($name);
94         
95         $ret = "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
96         $Ajax->addUpdate($name, $name, $value);
97         if ($echo)
98                 echo $ret."\n";
99         else
100                 return $ret;
101 }
102 /*
103         Universal submit form button.
104         $atype - type of submit:
105          Normal submit:
106                 false - normal button; optional icon
107                 null  - button visible only in fallback mode; optional icon
108          Ajax submit:
109                 true      - standard button; optional icon
110
111                 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon
112                 'selector' - ditto with closing current popup editor window
113                 'cancel'  - cancel form entry on Escape press; dflt ICON_CANCEL
114                 'process' - displays progress bar during call; optional icon
115
116         $atype can contain also multiply type selectors separated by space, 
117         however make sense only combination of 'process' and one of defualt/selector/cancel
118 */
119 function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false)
120 {
121         global $path_to_root;
122
123         $aspect='';
124         if ($atype === null) {
125                 $aspect = fallback_mode() ? " aspect='fallback'" : " style='display:none;'";
126
127         } elseif (!is_bool($atype)) { // necessary: switch uses '=='
128
129                 $aspect = "aspect='$atype' ";
130                 $types = explode(' ', $atype);
131
132                 foreach ($types as $type) {
133                         switch($type) {
134                                 case 'selector':
135                                         $aspect = " aspect='selector' rel = '$value'"; 
136                                         $value = _("Select");
137                                         if ($icon===false) $icon=ICON_SUBMIT; break;
138
139                                 case 'default':
140                                         if ($icon===false) $icon=ICON_SUBMIT; break;
141
142                                 case 'cancel':
143                                         if ($icon===false) $icon=ICON_ESCAPE; break;
144                         }
145                 }
146         }
147         $submit_str = "<button class=\""
148             .($atype ? 'ajaxsubmit' : 'inputsubmit')
149                 ."\" type=\"submit\""
150                 .$aspect
151             ." name=\"$name\"  id=\"$name\" value=\"$value\""
152             .($title ? " title='$title'" : '')
153             .">"
154                 .($icon ? "<img src='$path_to_root/themes/".user_theme()."/images/$icon' height='12'>" : '')
155                 ."<span>$value</span>"
156                 ."</button>\n";
157         if ($echo)
158                 echo $submit_str;
159         else
160                 return $submit_str;
161 }
162
163 function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false)
164 {
165         if ($echo) echo "<center>";
166         submit($name, $value, $echo, $title, $async, $icon);
167         if ($echo) echo "</center>";
168 }
169
170 function submit_center_first($name, $value, $title=false, $async=false, $icon=false)
171 {
172         echo "<center>";
173         submit($name, $value, true, $title, $async, $icon);
174         echo "&nbsp;";
175 }
176
177 function submit_center_last($name, $value, $title=false, $async=false, $icon=false)
178 {
179         echo "&nbsp;";
180         submit($name, $value, true, $title, $async, $icon);
181         echo "</center>";
182 }
183 /*
184         For following controls:
185         'both' - use both Ctrl-Enter and Escape hotkeys 
186         'cancel' - apply to 'RESET' button
187 */
188 function submit_add_or_update($add=true, $title=false, $async=false, $clone=false)
189 {
190         $cancel = $async;
191
192         if ($async === 'both') {
193                 $async = 'default'; $cancel = 'cancel';
194         } 
195         else if ($async === 'default')
196                 $cancel = true;
197         else if ($async === 'cancel')
198                 $async = true;
199         
200         if ($add)
201                 submit('ADD_ITEM', _("Add new"), true, $title, $async);
202         else {
203                 submit('UPDATE_ITEM', _("Update"), true, _('Submit changes'), $async);
204                 if ($clone) submit('CLONE', _("Clone"), true, 
205                         _('Edit new record with current data'), $async);
206                 submit('RESET', _("Cancel"), true, _('Cancel edition'), $cancel);
207         }
208 }
209
210 function submit_add_or_update_center($add=true, $title=false, $async=false, $clone=false)
211 {
212         echo "<center>";
213         submit_add_or_update($add, $title, $async, $clone);
214         echo "</center>";
215 }
216
217 function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false, $clone = false)
218 {
219         echo "<tr>";
220         if ($right)
221                 echo "<td>&nbsp;</td>\n";
222         echo "<td $extra>";
223         submit_add_or_update($add, $title, $async, $clone);
224         echo "</td></tr>\n";
225 }
226
227 function submit_cells($name, $value, $extra="", $title=false, $async=false)
228 {
229         echo "<td $extra>";
230         submit($name, $value, true, $title, $async);
231         echo "</td>\n";
232 }
233
234 function submit_row($name, $value, $right=true, $extra="", $title=false, $async=false)
235 {
236         echo "<tr>";
237         if ($right)
238                 echo "<td>&nbsp;</td>\n";
239         submit_cells($name, $value, $extra, $title, $async);
240         echo "</tr>\n";
241 }
242
243 function submit_return($name, $value, $title=false)
244 {
245         if (@$_REQUEST['popup']) {
246                 submit($name, $value, true, $title, 'selector');
247         }
248 }
249
250 function submit_js_confirm($name, $msg) {
251         add_js_source(
252                 "_validate.$name=function(){ return confirm('"
253                         . strtr($msg, array("\n"=>'\\n')) . "');};");
254 };
255 //-----------------------------------------------------------------------------------
256
257 function set_icon($icon, $title=false)
258 {
259         global $path_to_root;
260         return "<img src='$path_to_root/themes/".user_theme()."/images/$icon' width='12' height='12' border='0'".($title ? " title='$title'" : "")." />\n";     
261 }
262
263 function button($name, $value, $title=false, $icon=false,  $aspect='')
264 {
265         // php silently changes dots,spaces,'[' and characters 128-159
266         // to underscore in POST names, to maintain compatibility with register_globals
267         $rel = '';
268         if ($aspect == 'selector') {
269                 $rel = " rel='$value'";
270                 $value = _("Select");
271         }
272         if (user_graphic_links() && $icon)
273         {
274                 if ($value == _("Delete")) // Helper during implementation
275                         $icon = ICON_DELETE;
276                 return "<button type='submit' class='editbutton' name='"
277                         .htmlentities(strtr($name, array('.'=>'=2E', '='=>'=3D',// ' '=>'=20','['=>'=5B'
278                         )))
279                         ."' value='1'" . ($title ? " title='$title'":" title='$value'")
280                         . ($aspect ? " aspect='$aspect'" : '')
281                         . $rel
282                         ." />".set_icon($icon)."</button>\n";
283         }
284         else
285                 return "<input type='submit' class='editbutton' name='"
286                         .htmlentities(strtr($name, array('.'=>'=2E', '='=>'=3D',// ' '=>'=20','['=>'=5B'
287                         )))
288                         ."' value='$value'"
289                         .($title ? " title='$title'":'')
290                         . ($aspect ? " aspect='$aspect'" : '')
291                         . $rel
292                         ." />\n";
293 }
294
295 function button_cell($name, $value, $title=false, $icon=false, $aspect='')
296 {
297         echo "<td align='center'>";
298         echo button($name, $value, $title, $icon, $aspect);
299         echo "</td>";
300 }
301
302 function delete_button_cell($name, $value, $title=false)
303 {
304         button_cell($name, $value, $title, ICON_DELETE);
305 }
306
307 function edit_button_cell($name, $value, $title=false)
308 {
309         button_cell($name, $value, $title, ICON_EDIT);
310 }
311
312 function select_button_cell($name, $value, $title=false)
313 {
314         button_cell($name, $value, $title, ICON_ADD, 'selector');
315 }
316 //-----------------------------------------------------------------------------------
317
318 function check_value($name)
319 {
320         if (!isset($_POST[$name]))
321                 return 0;
322         return 1;
323 }
324
325 function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false)
326 {
327         global $Ajax;
328
329         $str = '';      
330
331         if ($label)
332                 $str .= $label . "  ";
333         if ($submit_on_change !== false) {
334                 if ($submit_on_change === true)
335                         $submit_on_change = 
336                                 "JsHttpRequest.request(\"_{$name}_update\", this.form);";
337         }
338         if ($value === null)
339                 $value = get_post($name,0);
340
341         $str .= "<input"
342             .($value == 1 ? ' checked':'')
343             ." type='checkbox' name='$name' value='1'"
344             .($submit_on_change ? " onclick='$submit_on_change'" : '')
345             .($title ? " title='$title'" : '')
346             ." >\n";
347
348         $Ajax->addUpdate($name, $name, $value);
349         return $str;
350 }
351
352 function check($label, $name, $value=null, $submit_on_change=false, $title=false)
353 {
354         echo checkbox($label, $name, $value, $submit_on_change, $title);
355 }
356
357 function check_cells($label, $name, $value=null, $submit_on_change=false, $title=false,
358         $params='')
359 {
360         if ($label != null)
361                 echo "<td>$label</td>\n";
362         echo "<td $params>";
363         echo check(null, $name, $value, $submit_on_change, $title);
364         echo "</td>";
365 }
366
367 function check_row($label, $name, $value=null, $submit_on_change=false, $title=false)
368 {
369         echo "<tr><td class='label'>$label</td>";
370         echo check_cells(NULL, $name, $value, $submit_on_change, $title);
371         echo "</tr>\n";
372 }
373
374 //-----------------------------------------------------------------------------------
375 function radio($label, $name, $value, $selected, $submit_on_change=false) {
376
377         if ($submit_on_change === true)
378                 $submit_on_change = 
379                         "JsHttpRequest.request(\"_{$name}_update\", this.form);";
380
381         return "<input type='radio' name=$name value='$value' ".($selected ? "checked":'')
382             .($submit_on_change ? " onclick='$submit_on_change'" : '')
383                 .">".($label ? $label : '');
384 }
385
386 //-----------------------------------------------------------------------------------
387 function labelheader_cell($label, $params="")
388 {
389         echo "<td class='tableheader' $params>$label</td>\n";
390 }
391
392 function label_cell($label, $params="", $id=null)
393 {
394     global $Ajax;
395
396         if(isset($id))
397         {
398             $params .= " id='$id'";
399             $Ajax->addUpdate($id, $id, $label);
400         }
401         echo "<td $params>$label</td>\n";
402
403         return $label;
404 }
405
406 function email_cell($label, $params="", $id=null)
407 {
408         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
409 }
410
411 function amount_decimal_cell($label, $params="", $id=null)
412 {
413         $dec = 0;
414         label_cell(price_decimal_format($label, $dec), "nowrap align=right ".$params, $id);
415 }
416
417 function amount_cell($label, $bold=false, $params="", $id=null)
418 {
419         if ($bold)
420                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
421         else
422                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
423 }
424
425 //JAM  Allow entered unit prices to be fractional
426 function unit_amount_cell($label, $bold=false, $params="", $id=null)
427 {
428         if ($bold)
429                 label_cell("<b>".unit_price_format($label)."</b>", "nowrap align=right ".$params, $id);
430         else
431                 label_cell(unit_price_format($label), "nowrap align=right ".$params, $id);
432 }
433
434
435 function percent_cell($label, $bold=false, $id=null)
436 {
437         if ($bold)
438                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
439         else
440                 label_cell(percent_format($label), "nowrap align=right", $id);
441 }
442 // 2008-06-15. Changed
443 function qty_cell($label, $bold=false, $dec=null, $id=null)
444 {
445         if (!isset($dec))
446                 $dec = get_qty_dec();
447         if ($bold)
448                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
449         else
450                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
451 }
452
453 function label_cells($label, $value, $params="", $params2="", $id='')
454 {
455         if ($label != null)
456                 echo "<td $params>$label</td>\n";
457         label_cell($value, $params2, $id);
458 }
459
460 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='')
461 {
462         echo "<tr>";
463         if ($params == "")
464         {
465                 echo "<td class='label'>$label</td>";
466                 $label = null;
467         }       
468         label_cells($label, $value, $params, $params2, $id);
469         if ($leftfill!=0)
470                 echo "<td colspan=$leftfill></td>";
471         echo "</tr>\n";
472 }
473
474 //-----------------------------------------------------------------------------------
475
476 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, 
477         $labparams="", $post_label="", $inparams="")
478 {
479         global $Ajax;
480
481         default_focus($name);
482         if ($label != null)
483                 label_cell($label, $labparams);
484         echo "<td>";
485
486         if ($value === null)
487                 $value = get_post($name);
488         echo "<input $inparams type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
489             .($title ? " title='$title'" : '')
490             .">";
491
492         if ($post_label != "")
493                 echo " " . $post_label;
494
495         echo "</td>\n";
496         $Ajax->addUpdate($name, $name, $value);
497 }
498
499 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null,
500         $labparams=null, $post_label=null, $submit_on_change=false)
501 {
502         global $Ajax;
503
504         default_focus($name);
505         if (!isset($_POST[$name]) || $_POST[$name] == "")
506         {
507                 if ($init)
508                         $_POST[$name] = $init;
509                 else
510                         $_POST[$name] = "";
511         }
512         if ($label != null)
513                 label_cell($label, $labparams);
514
515         if (!isset($max))
516                 $max = $size;
517
518         echo "<td>";
519         $class = $submit_on_change ? 'class="searchbox"' : '';
520         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
521          .($title ? " title='$title'": '')." >";
522
523         if ($post_label)
524                 echo " " . $post_label;
525
526         echo "</td>\n";
527         $Ajax->addUpdate($name, $name, $_POST[$name]);
528 }
529
530 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
531 {
532         echo "<tr><td class='label'>$label</td>";
533         text_cells(null, $name, $value, $size, $max, $title, $params, $post_label);
534
535         echo "</tr>\n";
536 }
537
538 //-----------------------------------------------------------------------------------
539
540 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
541 {
542         echo "<tr><td class='label'>$label</td>";
543         text_cells_ex(null, $name, $size, $max, $value, $title, $params, $post_label);
544
545         echo "</tr>\n";
546 }
547
548 //-----------------------------------------------------------------------------------
549 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
550 {
551         if (get_post($name)) 
552                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
553         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
554 }
555
556 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
557 {
558         if (get_post($name)) 
559                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
560         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
561 }
562
563 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
564 {
565         $val = get_post($name);
566         if ($val) {
567                 if (strpos($val,'http://')===false)
568                         $val = 'http://'.$val;
569                 $label = "<a href='$val' target='_blank'>$label</a>";
570         }
571         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
572 }
573
574 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
575 {
576         $val = get_post($name);
577         if ($val) {
578                 if (strpos($val,'http://')===false)
579                         $val = 'http://'.$val;
580                 $label = "<a href='$val' target='_blank'>$label</a>";
581         }
582         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
583 }
584
585 //-----------------------------------------------------------------------------------
586 //
587 //      Since FA 2.2  $init parameter is superseded by $check. 
588 //  When $check!=null current date is displayed in red when set to other 
589 //      than current date.
590 //      
591 function date_cells($label, $name, $title = null, $check=null, $inc_days=0, 
592         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
593 {
594         global $use_date_picker, $path_to_root, $Ajax;
595
596         if (!isset($_POST[$name]) || $_POST[$name] == "")
597         {
598                 if ($inc_years == 1001)
599                         $_POST[$name] = null;
600                 else
601                 {
602                         $dd = Today();
603                         if ($inc_days != 0)
604                                 $dd = add_days($dd, $inc_days);
605                         if ($inc_months != 0)
606                                 $dd = add_months($dd, $inc_months);
607                         if ($inc_years != 0)
608                                 $dd = add_years($dd, $inc_years);
609                         $_POST[$name] = $dd;
610                 }
611         }
612         if ($use_date_picker)
613                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
614                 . "     <img src='$path_to_root/themes/default/images/cal.gif' width='16' height='16' border='0' alt='"._('Click Here to Pick up the date')."'></a>\n";
615         else
616                 $post_label = "";
617
618         if ($label != null)
619                 label_cell($label, $params);
620
621         echo "<td>";
622         
623         $class = $submit_on_change ? 'class="searchbox"' : '';
624
625         $aspect = $check ? 'aspect="cdate"' : '';
626         if ($check && (get_post($name) != Today()))
627                 $aspect .= ' style="color:#FF0000"';
628
629         default_focus($name);
630
631         echo "<input type=\"text\" name=\"$name\" $class $aspect size=\"9\" maxlength=\"12\" value=\"" 
632          . $_POST[$name]. "\""
633          .($title ? " title='$title'": '')." > $post_label";
634         echo "</td>\n";
635         $Ajax->addUpdate($name, $name, $_POST[$name]);
636 }
637
638 function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, 
639         $inc_years=0, $params=null, $submit_on_change=false)
640 {
641         echo "<tr><td class='label'>$label</td>";
642         date_cells(null, $name, $title, $check, $inc_days, $inc_months, 
643                 $inc_years, $params, $submit_on_change);
644         echo "</tr>\n";
645 }
646
647 //-----------------------------------------------------------------------------------
648 function password_row($label, $name, $value)
649 {
650         echo "<tr><td class='label'>$label</td>";
651         label_cell("<input type='password' name='$name' size=20 maxlength=20 value='$value' />");
652         echo "</tr>\n";
653 }       
654
655 //-----------------------------------------------------------------------------------
656 function file_cells($label, $name, $id="")
657 {
658         if ($id != "")
659                 $id = "id='$id'";
660         label_cells($label, "<input type='file' name='$name' $id />");
661 }               
662 function file_row($label, $name, $id = "")
663 {
664         echo "<tr><td class='label'>$label</td>";
665         file_cells(null, $name, $id);
666         echo "</tr>\n";
667 }       
668
669 //-----------------------------------------------------------------------------------
670
671 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false)
672 {
673         text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change);
674 }
675
676 //-----------------------------------------------------------------------------------
677
678 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false)
679 {
680         echo "<tr><td class='label'>$label</td>";
681         ref_cells(null, $name, $title, $init, null, $submit_on_change);
682         echo "</tr>\n";
683 }
684
685 //-----------------------------------------------------------------------------------
686
687 function percent_row($label, $name, $init=null)
688 {
689
690         if (!isset($_POST[$name]) || $_POST[$name]=="")
691         {
692                 $_POST[$name] = $init == null ? '' : $init;
693         }
694
695         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
696 }
697
698 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
699 {
700         global $Ajax;
701
702         if (!isset($dec))
703                 $dec = user_price_dec();
704         if (!isset($_POST[$name]) || $_POST[$name] == "")
705         {
706                 if ($init !== null)
707                         $_POST[$name] = $init;
708                 else
709                         $_POST[$name] = '';
710         }
711         if ($label != null)
712         {
713                 if ($params == null)
714                         $params = "class='label'";
715                 label_cell($label, $params);
716         }
717         if (!isset($max))
718                 $max = $size;
719
720         if ($label != null)
721                 echo "<td>";
722         else
723                 echo "<td align='right'>";
724
725         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
726
727         if ($post_label) {
728                 echo "<span id='_{$name}_label'> $post_label</span>";
729                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
730         }
731         echo "</td>\n";
732         $Ajax->addUpdate($name, $name, $_POST[$name]);
733         $Ajax->addAssign($name, $name, 'dec', $dec);
734 }
735
736
737 //-----------------------------------------------------------------------------------
738
739 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
740 {
741         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
742 }
743
744 //JAM  Allow entered unit prices to be fractional
745 function unit_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
746 {
747         if (!isset($dec))
748                 $dec = user_price_dec()+2;
749
750         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec+2);
751 }
752
753 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
754 {
755         echo "<tr>";
756         amount_cells($label, $name, $init, $params, $post_label, $dec);
757         echo "</tr>\n";
758 }
759
760 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
761 {
762         echo "<tr>";
763         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
764         echo "</tr>\n";
765 }
766
767 //-----------------------------------------------------------------------------------
768
769 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
770 {
771         if (!isset($dec))
772                 $dec = user_qty_dec();
773
774         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
775 }
776
777 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
778 {
779         if (!isset($dec))
780                 $dec = user_qty_dec();
781
782         echo "<tr>";
783         amount_cells($label, $name, $init, $params, $post_label, $dec);
784         echo "</tr>\n";
785 }
786
787 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
788 {
789         if (!isset($dec))
790                 $dec = user_qty_dec();
791
792         echo "<tr>";
793         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
794         echo "</tr>\n";
795 }
796
797 //-----------------------------------------------------------------------------------
798
799 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
800 {
801         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
802 }
803
804 //-----------------------------------------------------------------------------------
805
806 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
807 {
808         if (!isset($dec))
809                 $dec = user_qty_dec();
810         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
811 }
812
813 //-----------------------------------------------------------------------------------
814
815 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
816 {
817         global $Ajax;
818
819         default_focus($name);
820         if ($label != null)
821                 echo "<td $params>$label</td>\n";
822         if ($value == null)
823                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
824         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
825         .($title ? " title='$title'" : '')
826         .">$value</textarea></td>\n";
827         $Ajax->addUpdate($name, $name, $value);
828 }
829
830 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
831 {
832         echo "<tr><td class='label'>$label</td>";
833         textarea_cells(null, $name, $value, $cols, $rows, $title, $params);
834         echo "</tr>\n";
835 }
836
837 //-----------------------------------------------------------------------------------
838 /*
839 function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value)
840 {
841         global $Ajax;
842
843         default_focus($name);
844         echo "<tr><td>$label</td>\n";
845         echo "<td>";
846
847         if ($value == null)
848                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
849         echo "<input type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\">   ";
850
851         submit($input_name, $input_value);
852
853         echo "</td></tr>\n";
854         $Ajax->addUpdate($name, $name, $value);
855 }
856 */
857 //-----------------------------------------------------------------------------------
858 //
859 //      When show_inactive page option is set 
860 //  displays value of inactive field as checkbox cell.
861 //  Also updates database record after status change.
862 //
863 function inactive_control_cell($id, $value, $table, $key)
864 {
865         global  $Ajax;
866
867         $name = "Inactive". $id;
868         $value = $value ? 1:0;
869
870         if (check_value('show_inactive')) {
871                 if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || 
872                         get_post('Update')) && (check_value('Inactive'.$id) != $value)) {
873                         update_record_status($id, !$value, $table, $key);
874                 }
875                 echo '<td align="center">'. checkbox(null, $name, $value, true, '', "align='center'")
876                         . hidden("LInact[$id]", $value, false) . '</td>';       
877         }
878 }
879 //
880 //      Displays controls for optional display of inactive records
881 //
882 function inactive_control_row($th) {
883         echo  "<tr><td colspan=".(count($th)).">"
884                 ."<div style='float:left;'>"
885                 . checkbox(null, 'show_inactive', null, true). _("Show also Inactive")
886                 ."</div><div style='float:right;'>"
887                 . submit('Update', _('Update'), false, '', null)
888                 ."</div></td></tr>";
889 }
890 //
891 //      Inserts additional column header when display of inactive records is on.
892 //
893 function inactive_control_column(&$th) {
894         global $Ajax;
895         
896         if (check_value('show_inactive')) 
897                 array_insert($th, count($th)-2 , _("Inactive"));
898         if (get_post('_show_inactive_update')) {
899                 $Ajax->activate('_page_body');
900         }
901 }
902 ?>