HTML::Shakan::Field::File - file upload field


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

Index


Code Index:

NAME

Top

HTML::Shakan::Field::File - file upload field

DESCRIPTION

Top

file upload field

AUTHOR

Top

Tokuhiro Matsuno

SEE ALSO

Top

HTML::Shakan


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

package HTML::Shakan::Field::File;
use Any::Moose;
extends 'HTML::Shakan::Field::Input';

has '+type' => (
    default => 'file',
);

sub field_filter {
    my ($self, $form, $params) = @_;
    $form->uploads->{$self->name} = FormValidator::Lite::Upload->new(
        $form->request, $self->name,
    );
    $params;
}

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