69 lines
1.3 KiB
69 lines
1.3 KiB
package NGCP::Panel::Form::BillingFeeUpload;
|
|
use Sipwise::Base;
|
|
use HTML::FormHandler::Moose;
|
|
extends 'HTML::FormHandler';
|
|
|
|
use HTML::FormHandler::Widget::Block::Bootstrap;
|
|
use NGCP::Panel::Field::BillingZone;
|
|
|
|
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 'upload_fees' => (
|
|
type => 'Upload',
|
|
max_size => '67108864', # 64MB
|
|
);
|
|
|
|
has_field 'purge_existing' => (
|
|
type => 'Boolean',
|
|
);
|
|
|
|
has_field 'save' => (
|
|
type => 'Submit',
|
|
value => 'Upload',
|
|
element_class => [qw/btn btn-primary/],
|
|
do_label => 0,
|
|
);
|
|
|
|
has_block 'fields' => (
|
|
tag => 'div',
|
|
class => [qw/modal-body/],
|
|
render_list => [qw/ upload_fees purge_existing /],
|
|
);
|
|
|
|
has_block 'actions' => (
|
|
tag => 'div',
|
|
class => [qw/modal-footer/],
|
|
render_list => [qw/save/],
|
|
);
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
NGCP::Panel::Form::BillingPeaktimeSpecial
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Preferences Form.
|
|
|
|
=head1 METHODS
|
|
|
|
=head1 AUTHOR
|
|
|
|
Gerhard Jungwirth
|
|
|
|
=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:
|