HTML::Shakan::Field::Date - date field


HTML-Shakan documentation Contained in the HTML-Shakan distribution.

Index


Code Index:

NAME

Top

HTML::Shakan::Field::Date - date field

DESCRIPTION

Top

date field specific class.

SEE ALSO

Top

HTML::Shakan


HTML-Shakan documentation Contained in the HTML-Shakan distribution.

package HTML::Shakan::Field::Date;
use Any::Moose;
extends 'HTML::Shakan::Field';

has '+widget' => (
    default => 'date'
);

has years => (
    is       => 'ro',
    isa      => 'ArrayRef',
    required => 0,
);

sub BUILD {
    my $self = shift;
    $self->add_constraint('DATE');
}

no Any::Moose;
__PACKAGE__->meta->make_immutable;
__END__