1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4#
5# This Source Code Form is "Incompatible With Secondary Licenses", as
6# defined by the Mozilla Public License, v. 2.0.
7
8package Bugzilla::Extension::Example::Config;
9use strict;
10use warnings;
11
12use Bugzilla::Config::Common;
13
14our $sortkey = 5000;
15
16sub get_param_list {
17    my ($class) = @_;
18
19    my @param_list = (
20    {
21        name => 'example_string',
22        type => 't',
23        default => 'EXAMPLE',
24    },
25    );
26    return @param_list;
27}
28
291;
30