summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Hook.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-08-20 04:27:51 +0200
committermkanat%bugzilla.org <>2008-08-20 04:27:51 +0200
commit8345701835066f68fc66f4177be57d19db6899d6 (patch)
tree057574b4e9fa53d55e0ec16bd6471a312047141a /Bugzilla/Hook.pm
parent9c80dc0d41fcf89640990948e308e683f6d5583f (diff)
downloadbugzilla-8345701835066f68fc66f4177be57d19db6899d6.tar.gz
bugzilla-8345701835066f68fc66f4177be57d19db6899d6.tar.xz
Bug 437005: Add hook to colchange.cgi to add column(s) to buglist
Patch By Elliotte Martin <elliotte_martin@yahoo.com> r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/Hook.pm')
-rw-r--r--Bugzilla/Hook.pm16
1 files changed, 16 insertions, 0 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm
index 4fb1424f8..7ffd38aa5 100644
--- a/Bugzilla/Hook.pm
+++ b/Bugzilla/Hook.pm
@@ -393,3 +393,19 @@ A hash that maps the names of errors (like C<invalid_param>) to numbers.
See L<Bugzilla::WebService::Constants/WS_ERROR_CODE> for an example.
=back
+
+=head2 colchange-columns
+
+This happens in F<colchange.cgi> right after the list of possible display
+columns have been defined and gives you the opportunity to add additional
+display columns to the list of selectable columns.
+
+Params:
+
+=over
+
+=item C<columns> - An arrayref containing an array of column IDs. Any IDs
+added by this hook must have been defined in the the buglist-columns hook.
+See L</buglist-columns>.
+
+=back