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/RewriteRule/ApplyAPI.pm

61 lines
1.6 KiB

package NGCP::Panel::Form::RewriteRule::ApplyAPI;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
use HTML::FormHandler::Widget::Block::Bootstrap;
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 'subscriber_id' => (
type => 'PosInteger',
label => 'Subscriber #',
required => 1,
maxlength => 255,
element_attr => {
rel => ['tooltip'],
title => ['The ID of the subscriber to apply rules for']
},
);
has_field 'numbers' => (
type => 'Compound',
label => 'User or number to rewrite',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The username or number to rewrite']
},
);
has_field 'direction' => (
type => 'Select',
label => 'Direction',
required => 1,
options => [
{ label => 'caller_in', value => 'caller_in' },
{ label => 'callee_in', value => 'callee_in' },
{ label => 'caller_out', value => 'caller_out' },
{ label => 'callee_out', value => 'callee_out' },
{ label => 'caller_lnp', value => 'caller_lnp' },
{ label => 'callee_lnp', value => 'callee_lnp' },
],
element_attr => {
rel => ['tooltip'],
title => ['The direction rule set to apply, one of caller_in, callee_in, caller_out, callee_out, caller_lnp, callee_lnp']
},
);
has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/subscriber_id number direction/],
);
1;
# vim: set tabstop=4 expandtab: