package HTML::FormFu::Constraint::Required; use strict; use base 'HTML::FormFu::Constraint'; sub constrain_value { my ( $self, $value ) = @_; return defined $value && length $value; } 1; __END__ =head1 NAME HTML::FormFu::Constraint::Required - Required Field Constraint =head1 DESCRIPTION States that a value must be submitted. The empty string is not allowed. =head1 SEE ALSO Is a sub-class of, and inherits methods from L L =head1 AUTHOR Carl Franks, C Based on the original source code of L, by Sebastian Riedel, C. =head1 LICENSE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.