Edit buttons center alignment.
[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 align='center'>";
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         $params='')
320 {
321         if ($label != null)
322                 echo "<td>$label</td>\n";
323         echo "<td $params>";
324         echo check(null, $name, $value, $submit_on_change, $title);
325         echo "</td>";
326 }
327
328 function check_row($label, $name, $value, $submit_on_change=false, $title=false)
329 {
330         echo "<tr>";
331         echo check_cells($label, $name, $value, $submit_on_change, $title);
332         echo "</tr>\n";
333 }
334
335 //-----------------------------------------------------------------------------------
336
337 function labelheader_cell($label, $params="")
338 {
339         echo "<td class='tableheader' $params>$label</td>\n";
340 }
341
342 function label_cell($label, $params="", $id=null)
343 {
344     global $Ajax;
345
346         if(isset($id))
347         {
348             $params .= " id='$id'";
349             $Ajax->addUpdate($id, $id, $label);
350         }
351         echo "<td $params>$label</td>\n";
352
353         return $label;
354 }
355
356 function email_cell($label, $params="", $id=null)
357 {
358         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
359 }
360
361 function amount_cell($label, $bold=false, $params="", $id=null)
362 {
363         if ($bold)
364                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
365         else
366                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
367 }
368
369 function percent_cell($label, $bold=false, $id=null)
370 {
371         if ($bold)
372                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
373         else
374                 label_cell(percent_format($label), "nowrap align=right", $id);
375 }
376 // 2008-06-15. Changed
377 function qty_cell($label, $bold=false, $dec=null, $id=null)
378 {
379         if (!isset($dec))
380                 $dec = get_qty_dec();
381         if ($bold)
382                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
383         else
384                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
385 }
386
387 function label_cells($label, $value, $params="", $params2="", $id='')
388 {
389         if ($label != null)
390                 echo "<td $params>$label</td>\n";
391         label_cell($value, $params2, $id);
392 }
393
394 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='')
395 {
396         echo "<tr>";
397         label_cells($label, $value, $params, $params2, $id);
398         if ($leftfill!=0)
399                 echo "<td colspan=$leftfill></td>";
400         echo "</tr>\n";
401 }
402
403 //-----------------------------------------------------------------------------------
404
405 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, 
406         $labparams="", $post_label="", $inparams="")
407 {
408         global $Ajax;
409
410         default_focus($name);
411         if ($label != null)
412                 label_cell($label, $labparams);
413         echo "<td>";
414
415         if ($value === null)
416                 $value = get_post($name);
417         echo "<input $inparams type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
418             .($title ? " title='$title'" : '')
419             .">";
420
421         if ($post_label != "")
422                 echo " " . $post_label;
423
424         echo "</td>\n";
425         $Ajax->addUpdate($name, $name, $value);
426 }
427
428 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null,
429         $labparams=null, $post_label=null, $submit_on_change=false)
430 {
431         global $Ajax;
432
433         default_focus($name);
434         if (!isset($_POST[$name]) || $_POST[$name] == "")
435         {
436                 if ($init)
437                         $_POST[$name] = $init;
438                 else
439                         $_POST[$name] = "";
440         }
441         if ($label != null)
442                 label_cell($label, $labparams);
443
444         if (!isset($max))
445                 $max = $size;
446
447         echo "<td>";
448         $class = $submit_on_change ? 'class="searchbox"' : '';
449         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
450          .($title ? " title='$title'": '')." >";
451
452         if ($post_label)
453                 echo " " . $post_label;
454
455         echo "</td>\n";
456         $Ajax->addUpdate($name, $name, $_POST[$name]);
457 }
458
459 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
460 {
461         echo "<tr>";
462
463         text_cells($label, $name, $value, $size, $max, $title, $params, $post_label);
464
465         echo "</tr>\n";
466 }
467
468 //-----------------------------------------------------------------------------------
469
470 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
471 {
472         echo "<tr>";
473
474         text_cells_ex($label, $name, $size, $max, $value, $title, $params, $post_label);
475
476         echo "</tr>\n";
477 }
478
479 //-----------------------------------------------------------------------------------
480 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
481 {
482         if (get_post($name)) 
483                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
484         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
485 }
486
487 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
488 {
489         if (get_post($name)) 
490                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
491         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
492 }
493
494 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
495 {
496         $val = get_post($name);
497         if ($val) {
498                 if (strpos($val,'http://')===false)
499                         $val = 'http://'.$val;
500                 $label = "<a href='$val' target='_blank'>$label</a>";
501         }
502         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
503 }
504
505 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
506 {
507         $val = get_post($name);
508         if ($val) {
509                 if (strpos($val,'http://')===false)
510                         $val = 'http://'.$val;
511                 $label = "<a href='$val' target='_blank'>$label</a>";
512         }
513         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
514 }
515
516 //-----------------------------------------------------------------------------------
517 //
518 //      Since FA 2.2  $init parameter is superseded by $check. 
519 //  When $check!=null current date is displayed in red when set to other 
520 //      than current date.
521 //      
522 function date_cells($label, $name, $title = null, $check=null, $inc_days=0, 
523         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
524 {
525         global $use_date_picker, $path_to_root, $Ajax;
526
527         if (!isset($_POST[$name]) || $_POST[$name] == "")
528         {
529                 if ($inc_years == 1001)
530                         $_POST[$name] = null;
531                 else
532                 {
533                         $dd = Today();
534                         if ($inc_days != 0)
535                                 $dd = add_days($dd, $inc_days);
536                         if ($inc_months != 0)
537                                 $dd = add_months($dd, $inc_months);
538                         if ($inc_years != 0)
539                                 $dd = add_years($dd, $inc_years);
540                         $_POST[$name] = $dd;
541                 }
542         }
543         if ($use_date_picker)
544                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
545                 . "     <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";
546         else
547                 $post_label = "";
548
549         if ($label != null)
550                 label_cell($label, $params);
551
552         echo "<td>";
553         
554         $class = $submit_on_change ? 'class="searchbox"' : '';
555
556         $aspect = $check ? 'aspect="cdate"' : '';
557         if ($check && (get_post($name) != Today()))
558                 $aspect .= ' style="color:#FF0000"';
559
560         echo "<input type=\"text\" name=\"$name\" $class $aspect size=\"9\" maxlength=\"12\" value=\"" 
561          . $_POST[$name]. "\""
562          .($title ? " title='$title'": '')." > $post_label";
563         echo "</td>\n";
564         $Ajax->addUpdate($name, $name, $_POST[$name]);
565 }
566
567 function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, 
568         $inc_years=0, $params=null, $submit_on_change=false)
569 {
570         echo "<tr>";
571         date_cells($label, $name, $title, $check, $inc_days, $inc_months, 
572                 $inc_years, $params, $submit_on_change);
573         echo "</tr>\n";
574 }
575
576 //-----------------------------------------------------------------------------------
577
578 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false)
579 {
580         text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change);
581 }
582
583 //-----------------------------------------------------------------------------------
584
585 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false)
586 {
587         echo "<tr>";
588         ref_cells($label, $name, $title, $init, null, $submit_on_change);
589         echo "</tr>\n";
590 }
591
592 //-----------------------------------------------------------------------------------
593
594 function percent_row($label, $name, $init=null)
595 {
596
597         if (!isset($_POST[$name]) || $_POST[$name]=="")
598         {
599                 $_POST[$name] = $init == null ? '' : $init;
600         }
601
602         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
603 }
604
605 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
606 {
607         global $Ajax;
608
609         if (!isset($dec))
610                 $dec = user_price_dec();
611         if (!isset($_POST[$name]) || $_POST[$name] == "")
612         {
613                 if ($init !== null)
614                         $_POST[$name] = $init;
615                 else
616                         $_POST[$name] = '';
617         }
618         if ($label != null)
619                 label_cell($label, $params);
620
621         if (!isset($max))
622                 $max = $size;
623
624         if ($label != null)
625                 echo "<td>";
626         else
627                 echo "<td align='right'>";
628
629         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
630
631         if ($post_label) {
632                 echo "<span id='_{$name}_label'> $post_label</span>";
633                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
634         }
635         echo "</td>\n";
636         $Ajax->addUpdate($name, $name, $_POST[$name]);
637         $Ajax->addAssign($name, $name, 'dec', $dec);
638 }
639
640
641 //-----------------------------------------------------------------------------------
642
643 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
644 {
645         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
646 }
647
648 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
649 {
650         echo "<tr>";
651         amount_cells($label, $name, $init, $params, $post_label, $dec);
652         echo "</tr>\n";
653 }
654
655 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
656 {
657         echo "<tr>";
658         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
659         echo "</tr>\n";
660 }
661
662 //-----------------------------------------------------------------------------------
663
664 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
665 {
666         if (!isset($dec))
667                 $dec = user_qty_dec();
668
669         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
670 }
671
672 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
673 {
674         if (!isset($dec))
675                 $dec = user_qty_dec();
676
677         echo "<tr>";
678         amount_cells($label, $name, $init, $params, $post_label, $dec);
679         echo "</tr>\n";
680 }
681
682 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
683 {
684         if (!isset($dec))
685                 $dec = user_qty_dec();
686
687         echo "<tr>";
688         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
689         echo "</tr>\n";
690 }
691
692 //-----------------------------------------------------------------------------------
693
694 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
695 {
696         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
697 }
698
699 //-----------------------------------------------------------------------------------
700
701 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
702 {
703         if (!isset($dec))
704                 $dec = user_qty_dec();
705         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
706 }
707
708 //-----------------------------------------------------------------------------------
709
710 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
711 {
712         global $Ajax;
713
714         default_focus($name);
715         if ($label != null)
716                 echo "<td $params>$label</td>\n";
717         if ($value == null)
718                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
719         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
720         .($title ? " title='$title'" : '')
721         .">$value</textarea></td>\n";
722         $Ajax->addUpdate($name, $name, $value);
723 }
724
725 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
726 {
727         echo "<tr>";
728         textarea_cells($label, $name, $value, $cols, $rows, $title, $params);
729         echo "</tr>\n";
730 }
731
732 //-----------------------------------------------------------------------------------
733 /*
734 function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value)
735 {
736         global $Ajax;
737
738         default_focus($name);
739         echo "<tr><td>$label</td>\n";
740         echo "<td>";
741
742         if ($value == null)
743                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
744         echo "<input type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\">   ";
745
746         submit($input_name, $input_value);
747
748         echo "</td></tr>\n";
749         $Ajax->addUpdate($name, $name, $value);
750 }
751 */
752 //-----------------------------------------------------------------------------------
753 //
754 //      When show_inactive page option is set 
755 //  displays value of inactive field as checkbox cell.
756 //  Also updates database record after status change.
757 //
758 function inactive_control_cell($id, $value, $table, $key)
759 {
760         global  $Ajax;
761
762         $name = "Inactive". $id;
763         $value = $value ? 1:0;
764
765         if (check_value('show_inactive')) {
766                 if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || 
767                         get_post('Update')) && (check_value('Inactive'.$id) != $value)) {
768                         update_record_status($id, !$value, $table, $key);
769                 }
770                 echo '<td align="center">'. checkbox(null, $name, $value, true, '', "align='center'")
771                         . hidden("LInact[$id]", $value, false) . '</td>';       
772         }
773 }
774 //
775 //      Displays controls for optional display of inactive records
776 //
777 function inactive_control_row($th) {
778         echo  "<tr><td colspan=".(count($th)).">"
779                 ."<div style='float:left;'>"
780                 . checkbox(null, 'show_inactive', null, true). _("Show also Inactive")
781                 ."</div><div style='float:right;'>"
782                 . submit('Update', _('Update'), false, '', null)
783                 ."</div></td></tr>";
784 }
785 //
786 //      Inserts additional column header when display of inactive records is on.
787 //
788 function inactive_control_column(&$th) {
789         global $Ajax;
790         
791         if (check_value('show_inactive')) 
792                 array_insert($th, count($th)-2 , _("Inactive"));
793         if (get_post('_show_inactive_update')) {
794                 $Ajax->activate('_page_body');
795         }
796 }
797 ?>