| Form-Factory documentation | Contained in the Form-Factory distribution. |
Form::Factory::Control::FullText - The full_text control
version 0.020
has_control message => (
control => 'full_text',
options => {
default_value => q{Lots of
text goes
in here.},
},
);
This is a multi-line text control.
We have a current value if it is defined and has a non-zero string length.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
Copyright 2009 Qubling Software LLC.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
| Form-Factory documentation | Contained in the Form-Factory distribution. |
package Form::Factory::Control::FullText; BEGIN { $Form::Factory::Control::FullText::VERSION = '0.020'; } use Moose; with qw( Form::Factory::Control Form::Factory::Control::Role::Labeled Form::Factory::Control::Role::MultiLine Form::Factory::Control::Role::ScalarValue );
has '+value' => ( isa => 'Str', ); has '+default_value' => ( isa => 'Str', default => '', );
around has_current_value => sub { my $next = shift; my $self = shift; return ($self->has_value || $self->has_default_value) && length($self->current_value) > 0; };
1;