BugFields.pm 1.83 KB
Newer Older
1 2 3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
#
5 6
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
7 8 9

package Bugzilla::Config::BugFields;

10
use 5.10.1;
11
use strict;
12
use warnings;
13 14

use Bugzilla::Config::Common;
15
use Bugzilla::Field;
16

17
our $sortkey = 600;
18 19 20

sub get_param_list {
  my $class = shift;
21 22 23 24 25 26

  my @legal_priorities = @{get_legal_field_values('priority')};
  my @legal_severities = @{get_legal_field_values('bug_severity')};
  my @legal_platforms  = @{get_legal_field_values('rep_platform')};
  my @legal_OS         = @{get_legal_field_values('op_sys')};

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  my @param_list = (
  {
   name => 'useclassification',
   type => 'b',
   default => 0
  },

  {
   name => 'usetargetmilestone',
   type => 'b',
   default => 0
  },

  {
   name => 'useqacontact',
   type => 'b',
   default => 0
  },

  {
   name => 'usestatuswhiteboard',
   type => 'b',
   default => 0
  },

52 53 54 55 56 57
  {
   name => 'use_see_also',
   type => 'b',
   default => 1
  },

58 59
  {
   name => 'defaultpriority',
60
   type => 's',
61 62
   choices => \@legal_priorities,
   default => $legal_priorities[-1],
63 64 65
   checker => \&check_priority
  },

66 67
  {
   name => 'defaultseverity',
68
   type => 's',
69 70
   choices => \@legal_severities,
   default => $legal_severities[-1],
71 72 73 74
   checker => \&check_severity
  },

  {
75 76
   name => 'defaultplatform',
   type => 's',
77
   choices => ['', @legal_platforms],
78 79
   default => '',
   checker => \&check_platform
80 81 82
  },

  {
83 84
   name => 'defaultopsys',
   type => 's',
85
   choices => ['', @legal_OS],
86 87
   default => '',
   checker => \&check_opsys
88 89 90 91 92 93 94
  },

  {
   name => 'collapsed_comment_tags',
   type => 't',
   default => 'obsolete, spam',
  });
95 96 97 98
  return @param_list;
}

1;