diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-12-18 21:17:52 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-12-18 21:17:52 +0100 |
commit | e068bcc76fe842fbcac8249ed29593f8a17b0c24 (patch) | |
tree | a1cef9f8fddee1fd7462fd4b79357029e9ecab6f /Bugzilla | |
parent | 64e21e0be7743a07841682c69f062b962550048e (diff) | |
download | bugzilla-e068bcc76fe842fbcac8249ed29593f8a17b0c24.tar.gz bugzilla-e068bcc76fe842fbcac8249ed29593f8a17b0c24.tar.xz |
Bug 813628 - New extension hook for Bugzilla::Bug::update called bug_start_of_update
r/a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Bug.pm | 4 | ||||
-rw-r--r-- | Bugzilla/Hook.pm | 33 |
2 files changed, 37 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index efad66f62..1f2b3cfea 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -791,6 +791,10 @@ sub update { my ($changes, $old_bug) = $self->SUPER::update(@_); + Bugzilla::Hook::process('bug_start_of_update', + { timestamp => $delta_ts, bug => $self, + old_bug => $old_bug, changes => $changes }); + # Certain items in $changes have to be fixed so that they hold # a name instead of an ID. foreach my $field (qw(product_id component_id)) { diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 5ac07046e..4c8933b16 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -421,6 +421,39 @@ to the user. =back +=head2 bug_start_of_update + +This happens near the beginning of L<Bugzilla::Bug/update>, after L<Bugzilla::Object/update> +is called, but before all other special changes are made to the database. Once use case is +this allows for adding your own entries to the C<changes> hash which gets added to the +bugs_activity table later keeping you from having to do it yourself. Also this is also helpful +if your extension needs to add CC members, flags, keywords, groups, etc. This generally +occurs inside a database transaction. + +Params: + +=over + +=item C<bug> + +The changed bug object, with all fields set to their updated values. + +=item C<old_bug> + +A bug object pulled from the database before the fields were set to +their updated values (so it has the old values available for each field). + +=item C<timestamp> + +The timestamp used for all updates in this transaction, as a SQL date +string. + +=item C<changes> + +The hash of changed fields. C<< $changes->{field} = [old, new] >> + +=back + =head2 bug_url_sub_classes Allows you to add more L<Bugzilla::BugUrl> sub-classes. |