ngcp-panel/lib/NGCP/Panel/Form/Sound/File.pm

50 lines
1.0 KiB

package NGCP::Panel::Form::Sound::File;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
use HTML::FormHandler::Widget::Block::Bootstrap;
has '+enctype' => ( default => 'multipart/form-data');
has '+widget_wrapper' => ( default => 'Bootstrap' );
has_field 'submitid' => ( type => 'Hidden' );
sub build_render_list {[qw/submitid fields actions/]}
sub build_form_element_class {[qw(form-horizontal)]}
has_field 'loopplay' => (
type => 'Boolean',
);
has_field 'use_parent' => (
type => 'Boolean',
);
has_field 'soundfile' => (
type => 'Upload',
noupdate => 1, #let controller handle the file
max_size => undef,
);
has_field 'save' => (
type => 'Submit',
value => 'Save',
element_class => [qw/btn btn-primary/],
label => '',
);
has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/loopplay use_parent soundfile/],
);
has_block 'actions' => (
tag => 'div',
class => [qw/modal-footer/],
render_list => [qw/save/],
);
1;
# vim: set tabstop=4 expandtab: