Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
83457018
Commit
83457018
authored
Aug 20, 2008
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
parent
9c80dc0d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
0 deletions
+45
-0
Hook.pm
Bugzilla/Hook.pm
+16
-0
colchange.cgi
colchange.cgi
+2
-0
colchange-columns.pl
extensions/example/code/colchange-columns.pl
+27
-0
No files found.
Bugzilla/Hook.pm
View file @
83457018
...
@@ -393,3 +393,19 @@ A hash that maps the names of errors (like C<invalid_param>) to numbers.
...
@@ -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.
See L<Bugzilla::WebService::Constants/WS_ERROR_CODE> for an example.
=back
=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
colchange.cgi
View file @
83457018
...
@@ -84,6 +84,8 @@ my @custom_fields = grep { $_->type != FIELD_TYPE_MULTI_SELECT }
...
@@ -84,6 +84,8 @@ my @custom_fields = grep { $_->type != FIELD_TYPE_MULTI_SELECT }
Bugzilla
->
active_custom_fields
;
Bugzilla
->
active_custom_fields
;
push
(
@masterlist
,
map
{
$_
->
name
}
@custom_fields
);
push
(
@masterlist
,
map
{
$_
->
name
}
@custom_fields
);
Bugzilla::Hook::
process
(
"colchange-columns"
,
{
'columns'
=>
\
@masterlist
}
);
$vars
->
{
'masterlist'
}
=
\
@masterlist
;
$vars
->
{
'masterlist'
}
=
\
@masterlist
;
my
@collist
;
my
@collist
;
...
...
extensions/example/code/colchange-columns.pl
0 → 100644
View file @
83457018
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Example Plugin.
#
# The Initial Developer of the Original Code is Canonical Ltd.
# Portions created by Canonical Ltd. are Copyright (C) 2008
# Canonical Ltd. All Rights Reserved.
#
# Contributor(s): Elliotte Martin <elliotte_martin@yahoo.com>
use
strict
;
use
warnings
;
use
Bugzilla
;
my
$columns
=
Bugzilla
->
hook_args
->
{
'columns'
};
push
(
@$columns
,
"example"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment