summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Hook.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-04-13 17:46:25 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-04-13 17:46:25 +0200
commit6640f64e61f1ad5db0c36e2bbb15a37652108d54 (patch)
tree4a1d649c57322203979510477d196a9e05e13457 /Bugzilla/Hook.pm
parent9eeb23d40782f3d62cf61e988ea0a2eca7d291a7 (diff)
downloadbugzilla-6640f64e61f1ad5db0c36e2bbb15a37652108d54.tar.gz
bugzilla-6640f64e61f1ad5db0c36e2bbb15a37652108d54.tar.xz
Move doc of the admin_editusers_action hook at its right place
Diffstat (limited to 'Bugzilla/Hook.pm')
-rw-r--r--Bugzilla/Hook.pm48
1 files changed, 24 insertions, 24 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm
index b6a27f03d..8eac561c0 100644
--- a/Bugzilla/Hook.pm
+++ b/Bugzilla/Hook.pm
@@ -112,6 +112,30 @@ This describes what hooks exist in Bugzilla currently. They are mostly
in alphabetical order, but some related hooks are near each other instead
of being alphabetical.
+=head2 admin_editusers_action
+
+This hook allows you to add additional actions to the admin Users page.
+
+Params:
+
+=over
+
+=item C<vars>
+
+You can add as many new key/value pairs as you want to this hashref.
+It will be passed to the template.
+
+=item C<action>
+
+A text which indicates the different behaviors that editusers.cgi will have.
+With this hook you can change the behavior of an action or add new actions.
+
+=item C<user>
+
+This is a Bugzilla::User object of the user.
+
+=back
+
=head2 attachment_process_data
This happens at the very beginning process of the attachment creation.
@@ -1389,30 +1413,6 @@ name), you can get it from here.
=back
-=head2 admin_editusers_action
-
-This hook allows you to add additional actions to the admin Users page.
-
-Params:
-
-=over
-
-=item C<vars>
-
-You can add as many new key/value pairs as you want to this hashref.
-It will be passed to the template.
-
-=item C<action>
-
-A text which indicates the different behaviors that editusers.cgi will have.
-With this hook you can change the behavior of an action or add new actions.
-
-=item C<user>
-
-This is a Bugzilla::User object of the user.
-
-=back
-
=head2 user_preferences
This hook allows you to add additional panels to the User Preferences page,