Make query debug output much nicer
[isso.git] / printer.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 /**
23 * Printer
24 * printer.php
25 *
26 * @package ISSO
27 */
28
29 /**
30 * Printer
31 *
32 * This framework generates standard HTML through various functions. The purpose
33 * is generally so that things like the admin system can be created without templates.
34 *
35 * Constants:
36 * ISSO_PRINTER_DONE_HEADER - An internal constant that is used to check to see
37 * if the page header has already been printed
38 * ISSO_PRINTER_HIDE_SETUP - Will stop the page footer data (copyright and debug
39 * box) from being printed
40 *
41 * Hooks:
42 * _printer_page_start() - Define function to echo() data after the page header
43 * has been outputted
44 *
45 * @author Iris Studios, Inc.
46 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
47 * @version $Revision$
48 * @package ISSO
49 *
50 */
51 class Printer
52 {
53 /**
54 * Framework registry object
55 * @var object
56 * @access private
57 */
58 var $registry = null;
59
60 /**
61 * Realm that we are operating in (displayed in the <title>)
62 * @var string
63 * @access private
64 */
65 var $realm = '[UNDEFINED REALM]';
66
67 /**
68 * CSS to place in the page
69 * @var string
70 * @access private
71 */
72 var $css = '';
73
74 /**
75 * Fields array that is used in this module
76 * @var array
77 * @access private
78 */
79 var $fields = array(
80 'realm' => array(REQ_YES, null, false)
81 );
82
83 // ###################################################################
84 /**
85 * Constructor
86 */
87 function __construct(&$registry)
88 {
89 $this->registry =& $registry;
90 }
91
92 // ###################################################################
93 /**
94 * (PHP 4) Constructor
95 */
96 function Printer(&$registry)
97 {
98 $this->__construct($registry);
99 }
100
101 // ###################################################################
102 /**
103 * Sets an ISSO field
104 *
105 * @access public
106 *
107 * @param string Field name
108 * @param mixed Value of the field
109 */
110 function set($name, $value)
111 {
112 $this->registry->do_set($name, $value, 'printer');
113 }
114
115 // ###################################################################
116 /**
117 * Gets an ISSO field
118 *
119 * @access public
120 *
121 * @param string Field name
122 *
123 * @return mixed Value of the field
124 */
125 function get($fieldname)
126 {
127 return $this->registry->do_get($fieldname, 'printer');
128 }
129
130 // ###################################################################
131 /**
132 * Creates a redirect to another page; constructs the header and footer
133 * (therefore execution stops)
134 *
135 * @access public
136 *
137 * @param string Location to redirect to
138 * @param integer Time to wait before the redirect
139 * @param array An aray of POST variables to send through on the redirect
140 */
141 function redirect($location, $timeout = 10, $postvars = array())
142 {
143 $timeout = $timeout * 200;
144
145 if ($postvars)
146 {
147 $js = <<<JS
148 <script type="text/javascript">
149 <!--
150 var timeout = $timeout;
151
152 if (timeout > 0)
153 {
154 setTimeout("redirect()", $timeout);
155 }
156 else
157 {
158 redirect();
159 }
160
161 function redirect()
162 {
163 document.forms.postvars.submit();
164 }
165
166 //-->
167 </script>
168 JS;
169 }
170 else
171 {
172 $js = <<<JS
173 <script type="text/javascript">
174 <!--
175 var timeout = $timeout;
176
177 if (timeout > 0)
178 {
179 setTimeout("redirect()", $timeout);
180 }
181 else
182 {
183 redirect();
184 }
185
186 function redirect()
187 {
188 window.location = "$location";
189 }
190 //-->
191 </script>
192 JS;
193 }
194
195 $this->page_start($this->registry->modules['localize']->string('Redirect'));
196
197 if ($postvars)
198 {
199 $this->form_start($location, null, false, 'postvars');
200
201 foreach ($postvars AS $key => $value)
202 {
203 $this->form_hidden_field($key, $value);
204 }
205
206 $this->form_end();
207 }
208
209 $this->page_message($this->registry->modules['localize']->string('Redirect'), sprintf($this->registry->modules['localize']->string('Please wait to be redirected. If you are not redirected in a few seconds, click <a href="%1$s">here</a>.'), $location));
210
211 $this->page_code($js);
212
213 $this->page_end();
214 }
215
216 // ###################################################################
217 /**
218 * Throws a fatal error; constructs the header and footer
219 *
220 * @access public
221 *
222 * @param string Error messsage text
223 */
224 function error($message)
225 {
226 $this->page_start($this->registry->modules['localize']->string('Error'));
227 $this->page_message($this->registry->modules['localize']->string('Error'), $message);
228 $this->page_end();
229
230 exit;
231 }
232
233 // ###################################################################
234 /**
235 * Outputs the header of the page: doctype, <html>, <head>, <title>,
236 * <body> and imbeds the style information
237 *
238 * @access public
239 *
240 * @param string Title of the page
241 * @param string Class of the page to be applied to the body
242 * @param integer Margin of the <div> that all content is placed in
243 * @param string Extra HTML to imbed in the <head> tag
244 * @param string <body> onLoad action to imbed
245 * @param integer Margin of the actual <body > tag
246 * @param string Relative path where the CSS data is stored
247 * @param bool Will force re-print the header if it has already been printed
248 */
249 function page_start($actiontitle, $pageclass = ':default:', $pagemargin = 15, $extra = '', $onload = false, $margin = 0, $dotpath = '.', $override = false)
250 {
251 $this->registry->check_isso_fields(get_class($this));
252
253 if ($this->registry->debug AND isset($_GET['query']))
254 {
255 ob_start();
256 }
257
258 if (defined('ISSO_PRINTER_DONE_HEADER') AND !$override)
259 {
260 if (constant('ISSO_PRINTER_DONE_HEADER') AND !$override)
261 {
262 return;
263 }
264 }
265
266 $title = sprintf($this->registry->modules['localize']->string('%1$s - %2$s - %3$s'), $this->registry->application, $this->realm, $actiontitle);
267
268 echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
269 echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>";
270 echo "\n\t<title>$title</title>";
271 echo "\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />";
272 echo $this->css;
273 echo ($extra ? "\n$extra" : '');
274 echo "\n</head>\n<body style=\"margin: {$margin}px;\"" . (($pageclass !== ':default:') ? " class=\"$pageclass\"" : '') . (($onload) ? " onload=\"$onload\"" : '') . ">\n";
275
276 if (!defined('ISSO_PRINTER_HIDE_SETUP') AND function_exists('_printer_page_start'))
277 {
278 _printer_page_start();
279 }
280
281 echo "<div style=\"margin: {$pagemargin}px;\">\n<!-- / page head -->\n\n";
282
283 if (!defined('ISSO_PRINTER_DONE_HEADER'))
284 {
285 define('ISSO_PRINTER_DONE_HEADER', 1);
286 }
287 }
288
289 // ###################################################################
290 /**
291 * Links CSS to the page from a given relative path
292 *
293 * @access public
294 *
295 * @param string Relative path to the CSS file
296 */
297 function css_link($path)
298 {
299 $this->css .= "\n\t<link rel=\"stylesheet\" href=\"$path\" />";
300 }
301
302 // ###################################################################
303 /**
304 * Imbeds actual CSS information into the page in <style> tags
305 *
306 * @access public
307 *
308 * @param string Path of the CSS file to be imbeded
309 */
310 function css_imbed($path)
311 {
312 $data = require_once($path);
313 $css = preg_replace('#/\*(.*?)\*/(\r|\n)*#s', '', $css);
314 $css = trim($css);
315 $this->css .= "\n\t<style type=\"text/css\">\n\t<!--\n" . $css . "\n\t//-->\n\t</style>";
316 }
317
318 // ###################################################################
319 /**
320 * Places raw HTML code directly into the documet at the current
321 * position
322 *
323 * @access public
324 *
325 * @param string HTML code
326 */
327 function page_code($code)
328 {
329 echo "\n\n$code\n\n";
330 }
331
332 // ###################################################################
333 /**
334 * A block function that produces a table with a message in it. This
335 * does not print the header and footer.
336 *
337 * @access public
338 *
339 * @param string The title of the message (appears at the top of the block)
340 * @param string Content of the message
341 */
342 function page_message($title, $message)
343 {
344 $this->table_start(true, '75%');
345 $this->table_head($title, 1);
346 $this->row_span("<blockquote>$message</blockquote>", ':swap:', 'left', 1);
347 $this->table_end();
348 }
349
350 // ###################################################################
351 /**
352 * Produces an entire page layout that asks the user whether or not
353 * they want to perform X action and provides a link to the YES and NO
354 * action
355 *
356 * @access public
357 *
358 * @param string Message that asks if they want to do X
359 * @param string Location to go for YES
360 * @param string DO action to pass
361 * @param array Hidden parameters to pass to the next page
362 */
363 function page_confirm($message, $location, $action, $params)
364 {
365 $this->page_start($this->registry->modules['localize']->string('Confirm'));
366
367 $this->form_start($location, $action);
368 foreach ($params AS $key => $value)
369 {
370 $this->form_hidden_field($key, $value);
371 }
372
373 $this->table_start(true, '75%');
374 $this->table_head($this->registry->modules['localize']->string('Confirm'), 1);
375 $this->row_span("<blockquote>$message</blockquote>", ':swap:', 'left', 1);
376 $this->row_submit('<input type="button" class="button" name="no" value=" ' . $this->registry->modules['localize']->string('No') . ' " onclick="history.back(1); return false;" />', $this->registry->modules['localize']->string('Yes'), '');
377 $this->table_end();
378
379 $this->form_end();
380
381 $this->page_end();
382 }
383
384 // ###################################################################
385 /**
386 * Closes the HTML document structure an adds the copyright; this also
387 * stops execution of the page
388 *
389 * @access public
390 */
391 function page_end()
392 {
393 if ($this->registry->debug AND isset($_GET['query']))
394 {
395 ob_clean();
396 ob_end_clean();
397
398 if (is_array($this->registry->modules[ISSO_DB_LAYER]->history))
399 {
400 foreach ($this->registry->modules[ISSO_DB_LAYER]->history AS $query)
401 {
402 echo $this->registry->modules[ISSO_DB_LAYER]->construct_query_debug($query);
403 }
404 }
405 exit;
406 }
407
408 $copyright = "\n<br />\n<p align=\"center\" class=\"copyright\">\n\t<a href=\"http://www.iris-studios.com\" target=\"_blank\">" . $this->registry->get('application') . ' ' . $this->registry->get('appversion') . ", &copy;2002 - " . date('Y') . " Iris Studios, Inc.</a>\n</p>";
409
410 if (!defined('ISSO_PRINTER_HIDE_SETUP'))
411 {
412 echo "\n<!-- page end -->\n</div>\n$copyright";
413 echo $this->registry->construct_debug_block(false);
414 }
415 else
416 {
417 echo "\n<!-- page end -->\n</div>";
418 }
419
420 echo "\n\n</body>\n</html>";
421
422 exit;
423 }
424
425 // -------------------------------------------------------------------
426
427 // ###################################################################
428 /**
429 * Opens a <table> tag with styling
430 *
431 * @access public
432 *
433 * @param bool Whether to add a <br /> before the table
434 * @param string Value of the width attribute
435 */
436 function table_start($break = true, $width = '90%')
437 {
438 if ($break)
439 {
440 echo '<br />';
441 }
442
443 echo "\n<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"$width\" class=\"tborder\">\n";
444 }
445
446 // ###################################################################
447 /**
448 * Adds a table row that is sued to head the entire table
449 *
450 * @access public
451 *
452 * @param string Title string
453 * @param integer Colspan attribute value
454 * @param bool Whether to bold the title
455 */
456 function table_head($title, $colspan = 2, $strong = true)
457 {
458 echo "<tr>\n\t<td class=\"tcat\" align=\"center\" colspan=\"$colspan\">" . (($strong) ? "<strong>$title</strong>" : $title) . "</td>\n</tr>\n";
459 }
460
461 // ###################################################################
462 /**
463 * Creates column headings; useful for a grid-style page. This uses a
464 * different styling than table_head() and is usually used directly
465 * after a table header.
466 *
467 * @access public
468 *
469 * @param array Array of titles to print
470 */
471 function table_column_head($columnarray)
472 {
473 if (is_array($columnarray))
474 {
475 $render = "<tr valign=\"top\" align=\"center\">\n";
476
477 foreach ($columnarray AS $header)
478 {
479 $render .= "\t<td class=\"thead\" align=\"center\">$header</td>\n";
480 }
481
482 $render .= "</tr>\n";
483
484 echo $render;
485 }
486 }
487
488 // ###################################################################
489 /**
490 * Closes a <table> tag
491 *
492 * @access public
493 */
494 function table_end()
495 {
496 echo "\n</table>\n";
497 }
498
499 // -------------------------------------------------------------------
500
501 // ###################################################################
502 /**
503 * Starts a <form> tag and adds the DO hidden input field
504 *
505 * @access public
506 *
507 * @param string Action/name of the file to action to
508 * @param string Value of the DO parameter; used to do-branch
509 * @param bool Enctype attribute; used for mime/multi-part
510 * @param string Name of the form; this only matters for DOM access
511 * @param string Method to action as; POST or GET (default is POST)
512 */
513 function form_start($action, $do, $enctype = false, $name = 'inputform', $submitmethod = 'post')
514 {
515 echo "\n<!-- input form -->\n<form name=\"$name\" action=\"$action\"" . (($enctype) ? " enctype=\"$enctype\"" : '') . " method=\"$submitmethod\">\n";
516
517 if ($do !== null)
518 {
519 $this->form_hidden_field('do', $do);
520 }
521 }
522
523 // ###################################################################
524 /**
525 * Adds a hidden field at the current location
526 *
527 * @access public
528 *
529 * @param string Name of the field
530 * @param string Value of the field
531 */
532 function form_hidden_field($name, $value)
533 {
534 echo "<input type=\"hidden\" name=\"$name\" value=\"$value\" />\n";
535 }
536
537 // ###################################################################
538 /**
539 * Closes a <form> tag
540 *
541 * @access public
542 */
543 function form_end()
544 {
545 echo "</form>\n<!-- / input form -->\n";
546 }
547
548 // -------------------------------------------------------------------
549
550 // ###################################################################
551 /**
552 * Creates a table row that spans an entire row; this is used to divide
553 * sections, usually
554 *
555 * @access public
556 *
557 * @param string Text to place in the row
558 * @param string Class name to style with; by default it alternates between alt1 and alt2 (use :swap: to do that)
559 * @param string Alignment of the text in the row
560 * @param integer Colspan attribute
561 */
562 function row_span($text, $class = ':swap:', $align = 'left', $colspan = 2)
563 {
564 if ($class === ':swap:')
565 {
566 $this->registry->modules['functions']->exec_swap_bg();
567 $row_class = $this->registry->modules['functions']->bgcolour;
568 $is_style_element = false;
569 }
570 else
571 {
572 if (preg_match('#:style:(.*?)#i', $class))
573 {
574 $is_style_element = true;
575 $style = str_replace(':style:', '', $class);
576 }
577 else
578 {
579 $row_class = $class;
580 $is_style_element = false;
581 }
582 }
583
584 echo "\n<tr>\n\t<td ". (($is_style_element) ? "style=\"$style\"" : "class=\"$row_class\"") . " colspan=\"$colspan\" align=\"$align\">$text</td>\n</tr>";
585 }
586
587 // ###################################################################
588 /**
589 * Creates a table row that has more than two columns; this is used in
590 * conjunction with table_column_head() usually; it takes an array of
591 * values
592 *
593 * @access public
594 *
595 * @param array Array of values in form value => alignment key (c for center, l for left, and r for right)
596 */
597 function row_multi_item($row_array)
598 {
599 $this->registry->modules['functions']->exec_swap_bg();
600
601 foreach ($row_array AS $item => $align)
602 {
603 $row_data["$align"][] = $item;
604 }
605
606 echo "<tr valign=\"top\">";
607
608 foreach ($row_data AS $align_key => $item_array)
609 {
610 if ($align_key == 'c')
611 {
612 $align = 'center';
613 }
614 else if ($align_key == 'l')
615 {
616 $align = 'left';
617 }
618 else if ($align_key == 'r')
619 {
620 $align = 'right';
621 }
622
623 foreach ($item_array AS $value)
624 {
625 echo "\n\t<td class=\"{$this->registry->modules['functions']->bgcolour}\" align=\"$align\">$value</td>";
626 }
627 }
628
629 echo "\n</tr>\n";
630 }
631
632 // ###################################################################
633 /**
634 * Generic row creation function that has two columns: label and value;
635 * this is used for many other form functions, but can also be used for
636 * non-editable fields
637 *
638 * @access public
639 *
640 * @param string Label text
641 * @param string HTML or text to place in the value column
642 * @param string Vertical align (valign attribute) for the row
643 * @param integer Colspan attribute
644 * @param string Class to style the row with; default is to alternate
645 */
646 function row_text($label, $value = '&nbsp;', $valign = 'top', $colspan = 2, $class = -1)
647 {
648 global $IS_SETTINGS;
649
650 if ($class == -1)
651 {
652 if (!$IS_SETTINGS)
653 {
654 $this->registry->modules['functions']->exec_swap_bg();
655 $row_class = $this->registry->modules['functions']->bgcolour;
656 }
657 else
658 {
659 $row_class = 'alt2';
660 }
661 }
662 else
663 {
664 $row_class = $class;
665 }
666
667 echo "<tr valign=\"$valign\">";
668 echo "\n\t<td class=\"$row_class\">$label</td>";
669 echo "\n\t<td class=\"$row_class\">$value</td>";
670
671 if ($colspan > 2)
672 {
673 echo "\n\t<td class=\"$row_class\" colspan=\"" . $colspan - 2 . "\">&nbsp;</td>";
674 }
675
676 echo "\n</tr>\n";
677 }
678
679 // ###################################################################
680 /**
681 * Creates a table row with an <input> text field as the value column
682 *
683 * @access public
684 *
685 * @param string Label text
686 * @param string Name of the <input> field
687 * @param string Value of the field
688 * @param integer Colspan attribute
689 * @param integer Size of the <input> field
690 * @param integer Length attribute; use FALSE for no length to be specified
691 * @param bool Whether to make this a password field
692 * @param string Vertical align (valign attribute)
693 */
694 function row_input($label, $name, $value = '', $colspan = 2, $size = 35, $length = false, $password = false, $lalign = 'top')
695 {
696 $this->row_text($label, "<input type=\"" . (($password) ? 'password' : 'text') . "\" class=\"input\" name=\"$name\" value=\"$value\" size=\"$size\" " . (($length) ? "maxlength=\"$length\" " : '') . "/>", $lalign, $colspan);
697 }
698
699 // ###################################################################
700 /**
701 * Creates a table row with a <textarea> as the value column
702 *
703 * @access public
704 *
705 * @param string Label text
706 * @param string Name of the <textarea>
707 * @param string Value of the <textarea>
708 * @param integer Colspan attribute
709 * @param integer Number of rows in the <textarea>
710 * @param integer Number of colums in the <textarea>
711 * @param bool Whether or not to use monospacing font
712 * @param string Extra style attributes to apply to the <textarea>
713 */
714 function row_textarea($label, $name, $value = '', $colspan = 2, $rows = 7, $cols = 50, $code = false, $style = '')
715 {
716 $this->row_text($label, "<textarea name=\"$name\" class=\"" . (($code) ? 'code' : 'input') . "\" rows=\"$rows\" cols=\"$cols\"" . (($style) ? ' style="' . $style . '"' : '') . ">$value</textarea>", 'top', $colspan);
717 }
718
719 // ###################################################################
720 /**
721 * Creates a table row with the tfoot class
722 *
723 * @access public
724 *
725 * @param string Extra text or HTML to insert into the row
726 * @param integer Colspan attribute
727 */
728 function row_tfoot($data, $colspan = 2)
729 {
730 echo $this->row_span($data, 'tfoot', 'center', $colspan);
731 }
732
733 // ###################################################################
734 /**
735 * Creates a tfoot table row with submit buttons
736 *
737 * @access public
738 *
739 * @param string Extra HTML to imbed in the row after the buttons
740 * @param string Submit button text (by default it uses pre-translated "Submit" from :save:)
741 * @param string Reset button text (default it uses pre-translated "Reset" from :reset:)
742 * @param integer Colspan attribute
743 */
744 function row_submit($extra = false, $submit = ':save:', $reset = ':reset:', $colspan = 2)
745 {
746 if ($submit === ':save:')
747 {
748 $submit = " " . $this->registry->modules['localize']->string('Submit') . " ";
749 }
750 else
751 {
752 $submit = " $submit ";
753 }
754
755 if ($reset === ':reset:')
756 {
757 $reset = " " . $this->registry->modules['localize']->string('Reset') . " ";
758 }
759 else
760 {
761 $reset = (($reset) ? " $reset " : '');
762 }
763
764 $output = "\n\t\t<input type=\"submit\" class=\"button\" name=\"__submit__\" value=\"$submit\" accesskey=\"s\" />";
765 $output .= ($reset ? "\n\t\t<input type=\"reset\" class=\"button\" name=\"__reset__\" value=\"$reset\" accesskey=\"r\" />" : '');
766 $output .= ($extra ? "\n\t\t$extra" : '');
767 $output .= "\n\t";
768 $this->row_tfoot($output, $colspan);
769 }
770
771 // ###################################################################
772 /**
773 * Creates an upload row; you need to specify some other paramaters in
774 * form_start() for this to work
775 *
776 * @access public
777 *
778 * @param string Label text
779 * @param string Upload name
780 * @param integer Colspan attribute
781 */
782 function row_upload($label, $name, $colspan = 2)
783 {
784 $this->row_text($label, "<input type=\"file\" class=\"button\" name=\"$name\" size=\"35\" />", 'top', $colspan);
785 }
786
787 // ###################################################################
788 /**
789 * Adds a name-value pair to an array that is constructed into a
790 * <select> list
791 *
792 * @access public
793 *
794 * @param string Text displayed for the option
795 * @param string Value of the option
796 * @param bool Whether or not to select this particluar option
797 */
798 function list_item($name, $value, $selected = false)
799 {
800 global $listitem;
801
802 $listitem[] = "\n\t<option value=\"$value\"" . (($selected == true) ? ' selected="selected"' : '') . ">$name</option>";
803 }
804
805 // ###################################################################
806 /**
807 * Assembles a <select> table row from list_item() items
808 *
809 * @access public
810 *
811 * @param string Label text
812 * @param string Name of the <select>
813 * @param bool Automatically submit the form on a change?
814 * @param integer Colspan attribute
815 */
816 function row_list($label, $name, $is_jump = false, $colspan = 2)
817 {
818 global $listitem;
819
820 foreach ($listitem AS $option)
821 {
822 $optionlist .= $option;
823 }
824
825 $listitem = '';
826
827 $this->row_text($label, "\n<select class=\"button\" name=\"$name\"" . (($is_jump) ? " onchange=\"this.form.submit();\"" : '') . ">$optionlist\n</select>" . (($is_jump) ? "\n<input type=\"submit\" class=\"button\" value=\" " . $this->registry->modules['localize']->string('Go') . " \" accesskey=\"g\" />" : '') . "\n", $colspan);
828 }
829
830 // ###################################################################
831 /**
832 * Creates a row with two radio buttons: yes and now
833 *
834 * @access public
835 *
836 * @param string Label text
837 * @param string Name of the BOOL flag
838 * @param bool TRUE to select the YES by default; FALSE for NO
839 * @param integer Colspan attribute
840 */
841 function row_yesno($label, $name, $value, $colspan = 2)
842 {
843 $this->row_text($label, "<input type=\"radio\" name=\"$name\" value=\"1\"" . (($value) ? ' checked="checked"' : '') . " /> " . $this->registry->modules['localize']->string('Yes') . " <input type=\"radio\" name=\"$name\" value=\"0\"" . ((!$value) ? ' checked="checked"' : '') . " /> " . $this->registry->modules['localize']->string('No'), $colspan);
844 }
845 }
846
847 /*=====================================================================*\
848 || ###################################################################
849 || # $HeadURL$
850 || # $Id$
851 || ###################################################################
852 \*=====================================================================*/
853 ?>