diff options
author | Kent Rogers <kar@cray.com> | 2010-07-05 14:49:52 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-05 14:49:52 -0700 |
commit | bcab6fcb10aa88683490bef03c607173f9c0b063 (patch) | |
tree | a7ed63d95f2cdce804e79e9869d813fda121a06a /Bugzilla/Classification.pm | |
parent | Bug 576969 - Add missing 'autocomplete' to yui array so keyword autocompletio... (diff) | |
download | bugzilla-bcab6fcb10aa88683490bef03c607173f9c0b063.tar.gz bugzilla-bcab6fcb10aa88683490bef03c607173f9c0b063.tar.bz2 bugzilla-bcab6fcb10aa88683490bef03c607173f9c0b063.zip |
Bug 514618: Allow restricting the visibility and values of fields by
classification.
r=mkanat, r=timello, a=mkanat
Diffstat (limited to 'Bugzilla/Classification.pm')
-rw-r--r-- | Bugzilla/Classification.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Bugzilla/Classification.pm b/Bugzilla/Classification.pm index c7cda11be..88ec4eb3b 100644 --- a/Bugzilla/Classification.pm +++ b/Bugzilla/Classification.pm @@ -20,11 +20,12 @@ use strict; package Bugzilla::Classification; use Bugzilla::Constants; +use Bugzilla::Field; use Bugzilla::Util; use Bugzilla::Error; use Bugzilla::Product; -use base qw(Bugzilla::Object); +use base qw(Bugzilla::Field::ChoiceInterface Bugzilla::Object); ############################### #### Initialization #### @@ -111,6 +112,14 @@ sub _check_sortkey { return $sortkey; } +##################################### +# Implement Bugzilla::Field::Choice # +##################################### + +use constant FIELD_NAME => 'classification'; +use constant is_default => 0; +use constant is_active => 1; + ############################### #### Methods #### ############################### |