# Boolean charts
my @fields = @{ Bugzilla->fields({ obsolete => 0 }) };
+my %exclude_fields = ();
+
# If we're not in the time-tracking group, exclude time-tracking fields.
if (!$user->is_timetracker) {
foreach my $tt_field (TIMETRACKING_FIELDS) {
- @fields = grep($_->name ne $tt_field, @fields);
+ $exclude_fields{$tt_field} = 1;
}
}
+# Exclude fields turned off by params
+my %param_controlled_fields = ('useqacontact' => 'qa_contact',
+ 'usetargetmilestone' => 'target_milestone',
+ 'useclassification' => 'classification',
+ 'usestatuswhiteboard' => 'status_whiteboard');
+
+while (my ($param, $field) = each %param_controlled_fields) {
+ $exclude_fields{$field} = 1 unless Bugzilla->params->{$param};
+}
+
+@fields = grep(!$exclude_fields{$_->name}, @fields);
+
@fields = sort {lc($a->description) cmp lc($b->description)} @fields;
unshift(@fields, { name => "noop", description => "---" });
$vars->{'fields'} = \@fields;