diff options
Diffstat (limited to 'httemplate/elements/input-text.html')
-rw-r--r-- | httemplate/elements/input-text.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/httemplate/elements/input-text.html b/httemplate/elements/input-text.html deleted file mode 100644 index fb50a5070..000000000 --- a/httemplate/elements/input-text.html +++ /dev/null @@ -1,48 +0,0 @@ -<% $opt{'prefix'} %><INPUT TYPE = "<% $opt{type} || 'text' %>" - NAME = "<% $opt{field} %>" - ID = "<% $opt{id} %>" - VALUE = "<% $value |h %>" - <% $size %> - <% $maxlength %> - <% $style %> - <% $opt{disabled} %> - <% $onchange %> - ><% $opt{'postfix'} %> -<%init> - -my %opt = @_; - -my $value = length($opt{curr_value}) ? $opt{curr_value} : $opt{value}; - -my $onchange = $opt{'onchange'} - ? 'onChange="'. $opt{'onchange'}. '(this)"' - : ''; - -my $size = $opt{'size'} - ? 'SIZE="'. $opt{'size'}. '"' - : ''; - -my $maxlength = $opt{'maxlength'} - ? 'MAXLENGTH="'. $opt{'maxlength'}. '"' - : ''; - -$opt{'disabled'} = &{ $opt{'disabled'} }( \%opt ) - if ref($opt{'disabled'}) eq 'CODE'; -$opt{'disabled'} = 'DISABLED' - if $opt{'disabled'} && $opt{'disabled'} !~ /disabled/i; # uuh... yeah? - -my @style = ref($opt{'style'}) - ? @{ $opt{'style'} } - : $opt{'style'} - ? ( $opt{'style'} ) - : (); - -push @style, 'text-align: '. $opt{'text-align'} - if $opt{'text-align'}; - -push @style, 'background-color: #dddddd' - if $opt{'disabled'} && ! $opt{'nodarken_disabled'}; - -my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; - -</%init> |