—use
strict;
package
HTML::FormFu::Element::Textarea;
$HTML::FormFu::Element::Textarea::VERSION
=
'2.07'
;
# ABSTRACT: Textarea form field
use
Moose;
'HTML::FormFu::Role::Element::SingleValueField'
;
__PACKAGE__->mk_attr_accessors(
qw(
autocomplete
cols
maxlength
rows
placeholder
)
);
after
BUILD
=>
sub
{
my
$self
=
shift
;
$self
->layout_field_filename(
'field_layout_textarea_field'
);
$self
->cols(40);
$self
->rows(20);
return
;
};
sub
_string_field {
my
(
$self
,
$render
) =
@_
;
# textarea_tag template
my
$html
=
sprintf
qq{<textarea name="%s"%s>}
,
$render
->{nested_name},
process_attrs(
$render
->{attributes} ),
;
if
(
defined
$render
->{value} ) {
$html
.=
$render
->{value};
}
$html
.=
"</textarea>"
;
return
$html
;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
HTML::FormFu::Element::Textarea - Textarea form field
=head1 VERSION
version 2.07
=head1 SYNOPSIS
my $element = $form->element( Textarea => 'foo' );
=head1 DESCRIPTION
Textarea form field.
=head1 ATTRIBUTE ACCESSORS
Get / set input attributes directly with these methods.
Arguments: [$string]
Return Value: $string
=head2 autocomplete
=head2 cols
=head2 maxlength
=head2 rows
=head2 placeholder
=head1 SEE ALSO
Is a sub-class of, and inherits methods from
L<HTML::FormFu::Role::Element::Field>,
L<HTML::FormFu::Element>
L<HTML::FormFu>
=head1 AUTHOR
Carl Franks, C<cfranks@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=head1 AUTHOR
Carl Franks <cpan@fireartist.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Carl Franks.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut