merging RT 4.0.6
[freeside.git] / rt / share / html / Elements / ColumnMap
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <%ARGS>
49 $Class => 'RT__Ticket'
50 $Name
51 $Attr  => undef
52 </%ARGS>
53 <%ONCE>
54
55 # This is scary and should totally be refactored -- jesse
56 my $COLUMN_MAP = {
57     id => {
58         attribute => 'id',
59         title    => 'id', # loc
60         align     => 'right',
61         value     => sub { return $_[0]->id }
62     },
63
64     Created => {
65         attribute => 'Created',
66         title     => 'Created', # loc
67         date      => sub { return $_[0]->CreatedObj },
68         value     => sub { return $_[0]->CreatedObj->AsString }
69     },
70     CreatedRelative => {
71         attribute => 'Created',
72         title     => 'Created', # loc
73         value     => sub { return $_[0]->CreatedObj->AgeAsString }
74     },
75     CreatedBy => {
76         attribute => 'Creator',
77         title     => 'Created By', # loc
78         value     => sub { return $_[0]->CreatorObj->Name }
79     },
80     LastUpdated => {
81         attribute => 'LastUpdated',
82         title     => 'Last Updated', # loc
83         date      => sub { return $_[0]->LastUpdatedObj },
84         value     => sub { return $_[0]->LastUpdatedObj->AsString }
85     },
86     LastUpdatedRelative => {
87         attribute => 'LastUpdated',
88         title     => 'Last Updated', # loc
89         value     => sub { return $_[0]->LastUpdatedObj->AgeAsString }
90     },
91     LastUpdatedBy => {
92         attribute => 'LastUpdatedBy',
93         title     => 'Last Updated By', # loc
94         value     => sub { return $_[0]->LastUpdatedByObj->Name }
95     },
96
97     CustomField => {
98         attribute => sub { return shift @_ },
99         title     => sub { return pop @_ },
100         value     => sub {
101             # Display custom field contents, separated by newlines.
102             # For Image custom fields we also show a thumbnail here.
103
104             my $values = $_[0]->CustomFieldValues( $_[-1] );
105             my @values = map {
106                 (
107                     ($_->CustomFieldObj->Type eq 'Image')
108                         ? \($m->scomp( '/Elements/ShowCustomFieldImage', Object => $_ ))
109                         : $_->Content
110                 ),
111                 \'<br />',
112             } @{ $values->ItemsArrayRef };
113             pop @values; # Remove that last <br />
114             return @values;
115         },
116     },
117
118     CheckBox => {
119         title => sub {
120             my $name = $_[1] || 'SelectedTickets';
121             my $checked = $m->request_args->{ $name .'All' }? 'checked="checked"': '';
122
123             return \qq{<input type="checkbox" name="}, $name, \qq{All" value="1" $checked
124                               onclick="setCheckbox(this.form, },
125                               $m->interp->apply_escapes($name,'j'),
126                               \qq{, this.checked)" />};
127         },
128         value => sub {
129             my $id = $_[0]->id;
130
131             my $name = $_[2] || 'SelectedTickets';
132             return \qq{<input type="checkbox" name="}, $name, \qq{" value="$id" checked="checked" />}
133                 if $m->request_args->{ $name . 'All'};
134
135             my $arg = $m->request_args->{ $name };
136             my $checked = '';
137             if ( $arg && ref $arg ) {
138                 $checked = 'checked="checked"' if grep $_ == $id, @$arg;
139             }
140             elsif ( $arg ) {
141                 $checked = 'checked="checked"' if $arg == $id;
142             }
143             return \qq{<input type="checkbox" name="}, $name, \qq{" value="$id" $checked />}
144         },
145     },
146     RadioButton => {
147         title => \'&nbsp;',
148         value => sub {
149             my $id = $_[0]->id;
150
151             my $name = $_[2] || 'SelectedTicket';
152             my $arg = $m->request_args->{ $name };
153             my $checked = '';
154             $checked = 'checked="checked"' if $arg && $arg == $id;
155             return \qq{<input type="radio" name="}, $name, \qq{" value="$id" $checked />};
156         },
157     },
158     (map {
159         my $value = RT->Config->Get($_);
160         $_ => { value => sub { return \$value } };
161     
162     } qw(WebPath WebBaseURL WebURL)),
163     WebRequestPath    => { value => sub { substr( $m->request_path, 1 ) } },
164     WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } },
165 };
166
167 $COLUMN_MAP->{'CF'} = $COLUMN_MAP->{'CustomField'};
168
169 </%ONCE>
170 <%INIT>
171 $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 );
172 $m->callback( COLUMN_MAP => $COLUMN_MAP );
173
174 # first deal with class specific things
175 my $class_map = $m->comp("/Elements/$Class/ColumnMap", Attr => $Attr, Name => $Name );
176 return $class_map if defined $class_map;
177 return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr );
178
179 </%INIT>