package NGCP::Panel::Form::TimeSet::EventUpload; use HTML::FormHandler::Moose; use HTML::FormHandler::Widget::Block::Bootstrap; use NGCP::Panel::Utils::Form; extends 'HTML::FormHandler'; use HTML::FormHandler::Widget::Block::Bootstrap; has '+widget_wrapper' => ( default => 'Bootstrap' ); has '+enctype' => ( default => 'multipart/form-data'); has_field 'submitid' => ( type => 'Hidden' ); sub build_render_list {[qw/submitid fields actions/]} sub build_form_element_class { [qw/form-horizontal/] } has_field 'calendarfile' => ( type => 'Upload', max_size => '67108864', # 64MB ); has_field 'purge_existing' => ( type => 'Boolean', ); has_block 'fields' => ( tag => 'div', class => [qw/modal-body/], render_list => [qw/calendarfile purge_existing /], ); has_field 'save' => ( type => 'Submit', value => 'Save', element_class => [qw/btn btn-primary/], label => '', ); has_block 'actions' => ( tag => 'div', class => [qw/modal-footer/], render_list => [qw/save/], ); 1; __END__ =head1 NAME NGCP::Panel::Form::TimeSet::EventUpload =head1 DESCRIPTION Preferences Form. =head1 METHODS =head1 AUTHOR Irina Peshinskaya =head1 LICENSE This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut # vim: set tabstop=4 expandtab: