summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-11-30 05:18:36 +0100
committermkanat%bugzilla.org <>2009-11-30 05:18:36 +0100
commit782d536feff3b2dce6c5f231167ed79059c161ea (patch)
tree2ddc7655457fda650b762cb37a04604184a541e2 /extensions
parent65f8c60da54e296b57cdc665b6f503df128636c7 (diff)
downloadbugzilla-782d536feff3b2dce6c5f231167ed79059c161ea.tar.gz
bugzilla-782d536feff3b2dce6c5f231167ed79059c161ea.tar.xz
Bug 523411: Hook: product-end_of_create
Patch by Dave Lawrence <dkl@redhat.com> r=mkanat, a=mkanat
Diffstat (limited to 'extensions')
-rw-r--r--extensions/Example/Extension.pm43
1 files changed, 43 insertions, 0 deletions
diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm
index 425fdfb18..615f7740b 100644
--- a/extensions/Example/Extension.pm
+++ b/extensions/Example/Extension.pm
@@ -24,6 +24,9 @@ package Bugzilla::Extension::Example;
use strict;
use base qw(Bugzilla::Extension);
+use Bugzilla::Constants;
+use Bugzilla::Group;
+use Bugzilla::User;
use Bugzilla::Util qw(diff_arrays html_quote);
# This is extensions/Example/lib/Util.pm. I can load this here in my
@@ -346,6 +349,46 @@ sub product_confirm_delete {
$vars->{'example'} = 1;
}
+
+sub product_end_of_create {
+ my ($self, $args) = @_;
+
+ my $product = $args->{product};
+
+ # For this example, any lines of code that actually make changes to your
+ # database have been commented out.
+
+ # This section will take a group that exists in your installation
+ # (possible called test_group) and automatically makes the new
+ # product hidden to only members of the group. Just remove
+ # the restriction if you want the new product to be public.
+
+ my $example_group = new Bugzilla::Group({ name => 'example_group' });
+
+ if ($example_group) {
+ $product->set_group_controls($example_group,
+ { entry => 1,
+ membercontrol => CONTROLMAPMANDATORY,
+ othercontrol => CONTROLMAPMANDATORY });
+# $product->update();
+ }
+
+ # This section will automatically add a default component
+ # to the new product called 'No Component'.
+
+ my $default_assignee = new Bugzilla::User(
+ { name => Bugzilla->params->{maintainer} });
+
+ if ($default_assignee) {
+# Bugzilla::Component->create(
+# { name => 'No Component',
+# product => $product,
+# description => 'Select this component if one does not ' .
+# 'exist in the current list of components',
+# initialowner => $default_assignee });
+ }
+}
+
sub sanitycheck_check {
my ($self, $args) = @_;