You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Form/Sound/HandleAPI.pm

33 lines
690 B

package NGCP::Panel::Form::Sound::HandleAPI;
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' );
has_field 'handle' => (
type => 'Text',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The sound handle.'],
},
);
has_field 'group' => (
type => 'Text',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The group this handle belongs to.'],
},
);
1;
# vim: set tabstop=4 expandtab: