diff options
author | Francisco Donalisio <francsd@linux.vnet.ibm.com> | 2012-03-09 21:10:17 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-03-09 21:10:17 +0100 |
commit | bb5c2660a9231bab025c4ad816c00f8bae13417c (patch) | |
tree | 230675197bd8563f2a5cdcdcae019da951744407 /Bugzilla | |
parent | 5a05d970d8ee3a8c18e5b3f96302a97ec45e988e (diff) | |
download | bugzilla-bb5c2660a9231bab025c4ad816c00f8bae13417c.tar.gz bugzilla-bb5c2660a9231bab025c4ad816c00f8bae13417c.tar.xz |
Bug 730794 - Need new hook edituser page
r=dkl, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Hook.pm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index b2ea820c7..7274c8aab 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -1354,6 +1354,30 @@ 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 edit_users.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, |