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/Field/SubscriberStatusSelect.pm

18 lines
368 B

package NGCP::Panel::Field::SubscriberStatusSelect;
use Moose;
extends 'HTML::FormHandler::Field::Select';
sub build_options {
my ($self) = @_;
return [
{ label => 'active', value => 'active' },
{ label => 'locked', value => 'locked' },
{ label => 'terminated', value => 'terminated' },
];
}
1;
# vim: set tabstop=4 expandtab: