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/CallForward/CFMappingsAPI.pm

250 lines
5.2 KiB

package NGCP::Panel::Form::CallForward::CFMappingsAPI;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
has_field 'id' => (
type => 'Hidden',
noupdate => 1,
);
has_field 'cfu' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Call Forward Unconditional, Number of Objects, each containing the keys ' .
'"destinationset", "timeset" and "sourceset". The values must be the name of ' .
'a corresponding set which belongs to the same subscriber.'],
},
);
has_field 'cfb' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Call Forward Busy, Number of Objects, each containing the keys ' .
'"destinationset", "timeset" and "sourceset". The values must be the name of ' .
'a corresponding set which belongs to the same subscriber.'],
},
);
has_field 'cft' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Call Forward Timeout, Number of Objects, each containing the keys ' .
'"destinationset", "timeset" and "sourceset". The values must be the name of ' .
'a corresponding set which belongs to the same subscriber.'],
},
);
has_field 'cfna' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Call Forward Unavailable, Number of Objects, each containing the keys ' .
'"destinationset", "timeset" and "sourceset". The values must be the name of ' .
'a corresponding set which belongs to the same subscriber.'],
},
);
has_field 'cfs' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Call Forward SMS, Number of Objects, each containing the keys ' .
'"destinationset", "timeset" and "sourceset". The values must be the name of ' .
'a corresponding set which belongs to the same subscriber. Alternatively, ' .
'you can pass destinationset_id, timeset_id and sourceset_id instead of names.'],
},
);
has_field 'cfu.destinationset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfu.destinationset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfu.timeset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfu.timeset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfu.sourceset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfu.sourceset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfb.destinationset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfb.destinationset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfb.timeset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfb.timeset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfb.sourceset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfb.sourceset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cft.destinationset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cft.destinationset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cft.timeset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cft.timeset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cft.sourceset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cft.sourceset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfna.destinationset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfna.destinationset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfna.timeset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfna.timeset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfna.sourceset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfna.sourceset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfs.destinationset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfs.destinationset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfs.timeset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfs.timeset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cfs.sourceset' => (
type => 'Text',
do_wrapper => 1,
do_label => 0,
);
has_field 'cfs.sourceset_id' => (
type => 'PosInteger',
do_label => 0,
);
has_field 'cft_ringtimeout' => (
type => 'PosInteger',
do_wrapper => 1,
do_label => 0,
);
1;
# vim: set tabstop=4 expandtab: