1
# -*- Mode: perl; indent-tabs-mode: nil -*-
3
# The contents of this file are subject to the Mozilla Public
4
# License Version 1.1 (the "License"); you may not use this file
5
# except in compliance with the License. You may obtain a copy of
6
# the License at http://www.mozilla.org/MPL/
8
# Software distributed under the License is distributed on an "AS
9
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
# implied. See the License for the specific language governing
11
# rights and limitations under the License.
13
# The Original Code is the Bugzilla Example Plugin.
15
# The Initial Developer of the Original Code is Everything Solved, Inc.
16
# Portions created by Everything Solved are Copyright (C) 2008
17
# Everything Solved, Inc. All Rights Reserved.
19
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
24
use Bugzilla::Util qw(diff_arrays);
26
# This code doesn't actually *do* anything, it's just here to show you
27
# how to use this hook.
28
my $args = Bugzilla->hook_args;
29
my ($object, $timestamp, $old_flags, $new_flags) =
30
@$args{qw(object timestamp old_flags new_flags)};
31
my ($removed, $added) = diff_arrays($old_flags, $new_flags);
32
my ($granted, $denied) = (0, 0);
33
foreach my $new_flag (@$added) {
34
$granted++ if $new_flag =~ /\+$/;
35
$denied++ if $new_flag =~ /-$/;
37
my $bug_id = (ref $object eq 'Bugzilla::Bug') ? $object->id : $object->bug_id;
38
my $result = "$granted flags were granted and $denied flags were denied"
39
. " on bug $bug_id at $timestamp.";
40
# Uncomment this line to see $result in your webserver's error log whenever