summaryrefslogtreecommitdiff
path: root/rt/webrt/Elements/Checkbox
blob: 964c482ba9263a1c7bf8d771bd44d1304dc1966c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%# $Header: /home/cvs/cvsroot/freeside/rt/webrt/Elements/Attic/Checkbox,v 1.1 2002-08-12 06:17:08 ivan Exp $
<INPUT TYPE="Checkbox" NAME ="<%$Name%>" <%$IsChecked%>>

<%ARGS>
$Name => undef
$Default => undef
$True => undef
$False => undef
$IsChecked => undef
</%ARGS>

<%INIT>
$IsChecked = 
  ($Default && $Default =~ /checked/i)
    ? " CHECKED " : "";
1;
</%INIT>