Support for inactive record status.
[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') as $m) {
51                 if (isset($_POST[$m])) {
52                         $Ajax->activate('_page_body');
53                         if ($m == 'RESET') 
54                                 $selected_id = $default;
55                         $Mode = $m; return;
56                 }
57         }
58         foreach (array('Edit', 'Delete') as $m) {
59                 foreach ($_POST as $p => $pvar) {
60                         if (strpos($p, $m) === 0) {
61 //                              $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
62                                 unset($_POST['_focus']); // focus on first form entry
63                                 $selected_id = quoted_printable_decode(substr($p, strlen($m)));
64                                 $Ajax->activate('_page_body');
65                                 $Mode = $m;
66                                 return;
67                         }
68                 }
69         }
70         $Mode = '';
71 }
72
73 //------------------------------------------------------------------------------
74 //
75 //      Read numeric value from user formatted input
76 //
77 function input_num($postname=null, $dflt=null)
78 {
79         if (!isset($_POST[$postname]) || $_POST[$postname] == "")
80                 return $dflt;
81
82     return user_numeric($_POST[$postname]);
83 }
84
85 //---------------------------------------------------------------------------------
86
87 function hidden($name, $value=null, $echo=true)
88 {
89         global $Ajax;
90         
91         if ($value === null) 
92                 $value = get_post($name);
93         
94         $ret = "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
95         $Ajax->addUpdate($name, $name, $value);
96         if ($echo)
97                 echo $ret."\n";
98         else
99                 return $ret;
100 }
101 /*
102         Universal submit form button.
103         $atype - type of submit:
104          Normal submit:
105                 false - normal button; optional icon
106                 null  - button visible only in fallback mode; optional icon
107          Ajax submit:
108                 true      - standard button; optional icon
109                 'process' - displays progress bar during call; optional icon
110                 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon
111                 'cancel'  - cancel form entry on Escape press; dflt ICON_CANCEL
112 */
113 function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false)
114 {
115         global $path_to_root;
116
117         $aspect='';
118         if (!is_bool($atype)) // necessary: switch uses '=='
119           switch($atype) {
120                 case 'process':
121                         $aspect = " aspect='process'"; break;
122                 case 'default':
123                         $aspect = " aspect='default'"; 
124                         if ($icon===false) $icon=ICON_SUBMIT; break;
125                 case 'cancel':
126                         $aspect = " aspect='cancel'"; 
127                         if ($icon===false) $icon=ICON_ESCAPE; break;
128                 case null: 
129                         $aspect = fallback_mode() ? 
130                                 " aspect='fallback'" : " style='display:none;'"; break;
131          }
132
133         default_focus($name);
134         $submit_str = "<button class=\""
135             .($atype ? 'ajaxsubmit' : 'inputsubmit')
136                 ."\" type=\"submit\""
137                 .$aspect
138             ." name=\"$name\"  id=\"$name\" value=\"$value\""
139             .($title ? " title='$title'" : '')
140             .">"
141                 .($icon ? "<img src='$path_to_root/themes/".user_theme()."/images/$icon'>" : '')
142                 ."<span>$value</span>"
143                 ."</button>\n";
144         if ($echo)
145                 echo $submit_str;
146         else
147                 return $submit_str;
148 }
149
150 function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false)
151 {
152         echo "<center>";
153         submit($name, $value, $echo, $title, $async, $icon);
154         echo "</center>";
155 }
156
157 function submit_center_first($name, $value, $title=false, $async=false, $icon=false)
158 {
159         echo "<center>";
160         submit($name, $value, true, $title, $async, $icon);
161         echo "&nbsp;";
162 }
163
164 function submit_center_last($name, $value, $title=false, $async=false, $icon=false)
165 {
166         echo "&nbsp;";
167         submit($name, $value, true, $title, $async, $icon);
168         echo "</center>";
169 }
170 /*
171         For following controls:
172         'both' - use both Ctrl-Enter and Escape hotkeys 
173         'cancel' - apply to 'RESET' button
174 */
175 function submit_add_or_update($add=true, $title=false, $async=false)
176 {
177         $cancel = $async;
178
179         if ($async === 'both') {
180                 $async = 'default'; $cancel = 'cancel';
181         } 
182         else if ($async === 'default')
183                 $cancel = true;
184         else if ($async === 'cancel')
185                 $async = true;
186         
187         if ($add)
188                 submit('ADD_ITEM', _("Add new"), true, $title, $async);
189         else {
190                 submit('UPDATE_ITEM', _("Update"), true, $title, $async);
191                 submit('RESET', _("Cancel"), true, $title, $cancel);
192         }
193 }
194
195 function submit_add_or_update_center($add=true, $title=false, $async=false)
196 {
197         echo "<center>";
198         submit_add_or_update($add, $title, $async);
199         echo "</center>";
200 }
201
202 function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false)
203 {
204         echo "<tr>";
205         if ($right)
206                 echo "<td>&nbsp;</td>\n";
207         echo "<td $extra>";
208         submit_add_or_update($add, $title, $async);
209         echo "</td></tr>\n";
210 }
211
212 function submit_cells($name, $value, $extra="", $title=false, $async=false)
213 {
214         echo "<td $extra>";
215         submit($name, $value, true, $title, $async);
216         echo "</td>\n";
217 }
218
219 function submit_row($name, $value, $right=true, $extra="", $title=false, $async=false)
220 {
221         echo "<tr>";
222         if ($right)
223                 echo "<td>&nbsp;</td>\n";
224         submit_cells($name, $value, $extra, $title, $async);
225         echo "</tr>\n";
226 }
227
228 function submit_return($name, $value, $title=false, $async=false)
229 {
230         if (count($_SESSION['Context'])) {
231                 submit($name, $value, true, $title, $async);
232         }
233 }
234 //-----------------------------------------------------------------------------------
235
236 function set_icon($icon, $title=false)
237 {
238         global $path_to_root;
239         return "<img src='$path_to_root/themes/".user_theme()."/images/$icon' width='14' height='14' border='0'".($title ? " title='$title'" : "")." />\n";     
240 }
241
242 function button($name, $value, $title=false, $icon=false)
243 {
244         // php silently changes dots,spaces,'[' and characters 128-159
245         // to underscore in POST names, to maintain compatibility with register_globals
246         if (user_graphic_links() && $icon)
247         {
248                 if ($value == _("Delete")) // Helper during implementation
249                         $icon = ICON_DELETE;
250                 return "<button type='submit' class='editbutton' name='".
251                         htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B'))).
252                         "' value='1'" . ($title ? " title='$title'":" title='$value'")." />".set_icon($icon)."\n";
253         }
254         else
255                 return "<input type='submit' class='editbutton' name='"
256                         .htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B')))
257                         ."' value='$value'"
258                         .($title ? " title='$title'":'')." />\n";
259 }
260
261 function button_cell($name, $value, $title=false, $icon=false)
262 {
263         echo "<td>";
264         echo button($name, $value, $title, $icon);
265         echo "</td>";
266 }
267
268 function delete_button_cell($name, $value, $title=false)
269 {
270         button_cell($name, $value, $title, ICON_DELETE);
271 }
272
273 function edit_button_cell($name, $value, $title=false)
274 {
275         button_cell($name, $value, $title, ICON_EDIT);
276 }
277 //-----------------------------------------------------------------------------------
278
279 function check_value($name)
280 {
281         if (!isset($_POST[$name]))
282                 return 0;
283         return 1;
284 }
285
286 function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false)
287 {
288         global $Ajax;
289
290         $str = '';      
291         default_focus($name);
292         if ($label)
293                 $str .= $label . "  ";
294         if ($submit_on_change !== false) {
295                 if ($submit_on_change === true)
296                         $submit_on_change = 
297                                 "JsHttpRequest.request(\"_{$name}_update\", this.form);";
298         }
299         if ($value === null)
300                 $value = get_post($name,0);
301
302         $str .= "<input"
303             .($value == 1 ? ' checked':'')
304             ." type='checkbox' name='$name' value='1'"
305             .($submit_on_change ? " onclick='$submit_on_change'" : '')
306             .($title ? " title='$title'" : '')
307             ." >\n";
308
309         $Ajax->addUpdate($name, $name, $value);
310         return $str;
311 }
312
313 function check($label, $name, $value=null, $submit_on_change=false, $title=false)
314 {
315         echo checkbox($label, $name, $value, $submit_on_change, $title);
316 }
317
318 function check_cells($label, $name, $value, $submit_on_change=false, $title=false)
319 {
320         if ($label != null)
321                 echo "<td>$label</td>\n";
322         echo "<td align='center'>";
323         echo check(null, $name, $value, $submit_on_change, $title);
324         echo "</td>";
325 }
326
327 function check_row($label, $name, $value, $submit_on_change=false, $title=false)
328 {
329         echo "<tr>";
330         echo check_cells($label, $name, $value, $submit_on_change, $title);
331         echo "</tr>\n";
332 }
333
334 //-----------------------------------------------------------------------------------
335
336 function labelheader_cell($label, $params="")
337 {
338         echo "<td class='tableheader' $params>$label</td>\n";
339 }
340
341 function label_cell($label, $params="", $id=null)
342 {
343     global $Ajax;
344
345         if(isset($id))
346         {
347             $params .= " id='$id'";
348             $Ajax->addUpdate($id, $id, $label);
349         }
350         echo "<td $params>$label</td>\n";
351
352         return $label;
353 }
354
355 function email_cell($label, $params="", $id=null)
356 {
357         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
358 }
359
360 function amount_cell($label, $bold=false, $params="", $id=null)
361 {
362         if ($bold)
363                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
364         else
365                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
366 }
367
368 function percent_cell($label, $bold=false, $id=null)
369 {
370         if ($bold)
371                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
372         else
373                 label_cell(percent_format($label), "nowrap align=right", $id);
374 }
375 // 2008-06-15. Changed
376 function qty_cell($label, $bold=false, $dec=null, $id=null)
377 {
378         if (!isset($dec))
379                 $dec = get_qty_dec();
380         if ($bold)
381                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
382         else
383                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
384 }
385
386 function label_cells($label, $value, $params="", $params2="", $id='')
387 {
388         if ($label != null)
389                 echo "<td $params>$label</td>\n";
390         label_cell($value, $params2, $id);
391 }
392
393 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='')
394 {
395         echo "<tr>";
396         label_cells($label, $value, $params, $params2, $id);
397         if ($leftfill!=0)
398                 echo "<td colspan=$leftfill></td>";
399         echo "</tr>\n";
400 }
401
402 //-----------------------------------------------------------------------------------
403
404 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, 
405         $labparams="", $post_label="", $inparams="")
406 {
407         global $Ajax;
408
409         default_focus($name);
410         if ($label != null)
411                 label_cell($label, $labparams);
412         echo "<td>";
413
414         if ($value === null)
415                 $value = get_post($name);
416         echo "<input $inparams type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
417             .($title ? " title='$title'" : '')
418             .">";
419
420         if ($post_label != "")
421                 echo " " . $post_label;
422
423         echo "</td>\n";
424         $Ajax->addUpdate($name, $name, $value);
425 }
426
427 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null,
428         $labparams=null, $post_label=null, $submit_on_change=false)
429 {
430         global $Ajax;
431
432         default_focus($name);
433         if (!isset($_POST[$name]) || $_POST[$name] == "")
434         {
435                 if ($init)
436                         $_POST[$name] = $init;
437                 else
438                         $_POST[$name] = "";
439         }
440         if ($label != null)
441                 label_cell($label, $labparams);
442
443         if (!isset($max))
444                 $max = $size;
445
446         echo "<td>";
447         $class = $submit_on_change ? 'class="searchbox"' : '';
448         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
449          .($title ? " title='$title'": '')." >";
450
451         if ($post_label)
452                 echo " " . $post_label;
453
454         echo "</td>\n";
455         $Ajax->addUpdate($name, $name, $_POST[$name]);
456 }
457
458 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
459 {
460         echo "<tr>";
461
462         text_cells($label, $name, $value, $size, $max, $title, $params, $post_label);
463
464         echo "</tr>\n";
465 }
466
467 //-----------------------------------------------------------------------------------
468
469 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
470 {
471         echo "<tr>";
472
473         text_cells_ex($label, $name, $size, $max, $value, $title, $params, $post_label);
474
475         echo "</tr>\n";
476 }
477
478 //-----------------------------------------------------------------------------------
479 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
480 {
481         if (get_post($name)) 
482                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
483         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
484 }
485
486 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
487 {
488         if (get_post($name)) 
489                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
490         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
491 }
492
493 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
494 {
495         $val = get_post($name);
496         if ($val) {
497                 if (strpos($val,'http://')===false)
498                         $val = 'http://'.$val;
499                 $label = "<a href='$val' target='_blank'>$label</a>";
500         }
501         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
502 }
503
504 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
505 {
506         $val = get_post($name);
507         if ($val) {
508                 if (strpos($val,'http://')===false)
509                         $val = 'http://'.$val;
510                 $label = "<a href='$val' target='_blank'>$label</a>";
511         }
512         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
513 }
514
515 //-----------------------------------------------------------------------------------
516 //
517 //      Since FA 2.2  $init parameter is superseded by $check. 
518 //  When $check!=null current date is displayed in red when set to other 
519 //      than current date.
520 //      
521 function date_cells($label, $name, $title = null, $check=null, $inc_days=0, 
522         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
523 {
524         global $use_date_picker, $path_to_root, $Ajax;
525
526         if (!isset($_POST[$name]) || $_POST[$name] == "")
527         {
528                 if ($inc_years == 1001)
529                         $_POST[$name] = null;
530                 else
531                 {
532                         $dd = Today();
533                         if ($inc_days != 0)
534                                 $dd = add_days($dd, $inc_days);
535                         if ($inc_months != 0)
536                                 $dd = add_months($dd, $inc_months);
537                         if ($inc_years != 0)
538                                 $dd = add_years($dd, $inc_years);
539                         $_POST[$name] = $dd;
540                 }
541         }
542         if ($use_date_picker)
543                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
544                 . "     <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";
545         else
546                 $post_label = "";
547
548         if ($label != null)
549                 label_cell($label, $params);
550
551         echo "<td>";
552         
553         $class = $submit_on_change ? 'class="searchbox"' : '';
554
555         $aspect = $check ? 'aspect="cdate"' : '';
556         if ($check && (get_post($name) != Today()))
557                 $aspect .= ' style="color:#FF0000"';
558
559         echo "<input type=\"text\" name=\"$name\" $class $aspect size=\"9\" maxlength=\"12\" value=\"" 
560          . $_POST[$name]. "\""
561          .($title ? " title='$title'": '')." > $post_label";
562         echo "</td>\n";
563         $Ajax->addUpdate($name, $name, $_POST[$name]);
564 }
565
566 function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, 
567         $inc_years=0, $params=null, $submit_on_change=false)
568 {
569         echo "<tr>";
570         date_cells($label, $name, $title, $check, $inc_days, $inc_months, 
571                 $inc_years, $params, $submit_on_change);
572         echo "</tr>\n";
573 }
574
575 //-----------------------------------------------------------------------------------
576
577 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false)
578 {
579         text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change);
580 }
581
582 //-----------------------------------------------------------------------------------
583
584 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false)
585 {
586         echo "<tr>";
587         ref_cells($label, $name, $title, $init, null, $submit_on_change);
588         echo "</tr>\n";
589 }
590
591 //-----------------------------------------------------------------------------------
592
593 function percent_row($label, $name, $init=null)
594 {
595
596         if (!isset($_POST[$name]) || $_POST[$name]=="")
597         {
598                 $_POST[$name] = $init == null ? '' : $init;
599         }
600
601         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
602 }
603
604 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
605 {
606         global $Ajax;
607
608         if (!isset($dec))
609                 $dec = user_price_dec();
610         if (!isset($_POST[$name]) || $_POST[$name] == "")
611         {
612                 if ($init !== null)
613                         $_POST[$name] = $init;
614                 else
615                         $_POST[$name] = '';
616         }
617         if ($label != null)
618                 label_cell($label, $params);
619
620         if (!isset($max))
621                 $max = $size;
622
623         if ($label != null)
624                 echo "<td>";
625         else
626                 echo "<td align='right'>";
627
628         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
629
630         if ($post_label) {
631                 echo "<span id='_{$name}_label'> $post_label</span>";
632                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
633         }
634         echo "</td>\n";
635         $Ajax->addUpdate($name, $name, $_POST[$name]);
636         $Ajax->addAssign($name, $name, 'dec', $dec);
637 }
638
639
640 //-----------------------------------------------------------------------------------
641
642 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
643 {
644         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
645 }
646
647 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
648 {
649         echo "<tr>";
650         amount_cells($label, $name, $init, $params, $post_label, $dec);
651         echo "</tr>\n";
652 }
653
654 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
655 {
656         echo "<tr>";
657         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
658         echo "</tr>\n";
659 }
660
661 //-----------------------------------------------------------------------------------
662
663 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
664 {
665         if (!isset($dec))
666                 $dec = user_qty_dec();
667
668         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
669 }
670
671 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
672 {
673         if (!isset($dec))
674                 $dec = user_qty_dec();
675
676         echo "<tr>";
677         amount_cells($label, $name, $init, $params, $post_label, $dec);
678         echo "</tr>\n";
679 }
680
681 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
682 {
683         if (!isset($dec))
684                 $dec = user_qty_dec();
685
686         echo "<tr>";
687         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
688         echo "</tr>\n";
689 }
690
691 //-----------------------------------------------------------------------------------
692
693 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
694 {
695         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
696 }
697
698 //-----------------------------------------------------------------------------------
699
700 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
701 {
702         if (!isset($dec))
703                 $dec = user_qty_dec();
704         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
705 }
706
707 //-----------------------------------------------------------------------------------
708
709 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
710 {
711         global $Ajax;
712
713         default_focus($name);
714         if ($label != null)
715                 echo "<td $params>$label</td>\n";
716         if ($value == null)
717                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
718         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
719         .($title ? " title='$title'" : '')
720         .">$value</textarea></td>\n";
721         $Ajax->addUpdate($name, $name, $value);
722 }
723
724 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
725 {
726         echo "<tr>";
727         textarea_cells($label, $name, $value, $cols, $rows, $title, $params);
728         echo "</tr>\n";
729 }
730
731 //-----------------------------------------------------------------------------------
732 /*
733 function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value)
734 {
735         global $Ajax;
736
737         default_focus($name);
738         echo "<tr><td>$label</td>\n";
739         echo "<td>";
740
741         if ($value == null)
742                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
743         echo "<input type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\">   ";
744
745         submit($input_name, $input_value);
746
747         echo "</td></tr>\n";
748         $Ajax->addUpdate($name, $name, $value);
749 }
750 */
751 //-----------------------------------------------------------------------------------
752 //
753 //      When show_inactive page option is set 
754 //  displays value of inactive field as checkbox cell.
755 //  Also updates database record after status change.
756 //
757 function inactive_status_cell($id, $value, $table, $key)
758 {
759         global  $Ajax;
760
761         $name = "Inactive". $id;
762         $value = $value ? 1:0;
763
764         if (check_value('show_inactive')) {
765                 if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || 
766                         get_post('Update')) && (check_value('Inactive'.$id) != $value)) {
767                         update_record_status($id, !$value, $table, $key);
768                 }
769                 echo '<td align="center">'. checkbox(null, $name, $value, true, '')
770                         . hidden("LInact[$id]", $value, false) . '</td>';       
771         }
772 }
773 //
774 //      Displays controls for optional display of inactive records
775 //
776 function show_inactive_row($th) {
777         echo  "<tr><td colspan=".(count($th)).">"
778                 ."<div style='float:left;'>"
779                 . checkbox(null, 'show_inactive', null, true). _("Show also Inactive")
780                 ."</div><div style='float:right;'>"
781                 . submit('Update', _('Update'), false, '', null)
782                 ."</div></td></tr>";
783 }
784
785 ?>