display date custom fields as real dates, #23121
[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         value     => sub { return $_[0]->CreatedObj },
68     },
69     CreatedRelative => {
70         attribute => 'Created',
71         title     => 'Created', # loc
72         value     => sub { return $_[0]->CreatedObj->AgeAsString }
73     },
74     CreatedBy => {
75         attribute => 'Creator',
76         title     => 'Created By', # loc
77         value     => sub { return $_[0]->CreatorObj->Name }
78     },
79     LastUpdated => {
80         attribute => 'LastUpdated',
81         title     => 'Last Updated', # loc
82         value     => sub { return $_[0]->LastUpdatedObj },
83     },
84     LastUpdatedRelative => {
85         attribute => 'LastUpdated',
86         title     => 'Last Updated', # loc
87         value     => sub { return $_[0]->LastUpdatedObj->AgeAsString }
88     },
89     LastUpdatedBy => {
90         attribute => 'LastUpdatedBy',
91         title     => 'Last Updated By', # loc
92         value     => sub { return $_[0]->LastUpdatedByObj->Name }
93     },
94
95     CustomField => {
96         attribute => sub { return shift @_ },
97         title     => sub { return pop @_ },
98         value     => sub {
99             # Display custom field contents, separated by newlines.
100             # For Image custom fields we also show a thumbnail here.
101
102             my $object = shift;
103             my $cfname = pop;
104             my $values = $object->CustomFieldValues( $cfname );
105             return if $values->Count == 0;
106             my @values;
107             # it is guaranteed to be the same type for all fields, right?
108             my $v = $values->First;
109             my $cftype = $v->CustomFieldObj->Type;
110
111             do {
112                 if ($cftype eq 'Image') {
113                     push @values, 
114                         \($m->scomp( '/Elements/ShowCustomFieldImage',
115                                       Object => $v ));
116                 } elsif ( $cftype eq 'Date' or $cftype eq 'DateTime' ) {
117                     # then actually return the date object;
118                     # ProcessColumnMapValue will stringify it
119                     my $DateObj = RT::Date->new( $session{'CurrentUser'} );
120                     $DateObj->Set(Format => 'unknown', Value => $v->Content);
121                     push @values, $DateObj;
122                 } else {
123                     push @values, $v->Content;
124                 }
125                 push @values, \'<br />'; # this is deeply silly
126             } while ($v = $values->Next);
127             pop @values; # Remove that last <br />
128             return @values;
129         },
130     },
131
132     CheckBox => {
133         title => sub {
134             my $name = $_[1] || 'SelectedTickets';
135             my $checked = $DECODED_ARGS->{ $name .'All' }? 'checked="checked"': '';
136
137             return \qq{<input type="checkbox" name="}, $name, \qq{All" value="1" $checked
138                               onclick="setCheckbox(this.form, },
139                               $m->interp->apply_escapes($name,'j'),
140                               \qq{, this.checked)" />};
141         },
142         value => sub {
143             my $id = $_[0]->id;
144
145             my $name = $_[2] || 'SelectedTickets';
146             return \qq{<input type="checkbox" name="}, $name, \qq{" value="$id" checked="checked" />}
147                 if $DECODED_ARGS->{ $name . 'All'};
148
149             my $arg = $DECODED_ARGS->{ $name };
150             my $checked = '';
151             if ( $arg && ref $arg ) {
152                 $checked = 'checked="checked"' if grep $_ == $id, @$arg;
153             }
154             elsif ( $arg ) {
155                 $checked = 'checked="checked"' if $arg == $id;
156             }
157             return \qq{<input type="checkbox" name="}, $name, \qq{" value="$id" $checked />}
158         },
159     },
160     RadioButton => {
161         title => \'&nbsp;',
162         value => sub {
163             my $id = $_[0]->id;
164
165             my $name = $_[2] || 'SelectedTicket';
166             my $arg = $DECODED_ARGS->{ $name };
167             my $checked = '';
168             $checked = 'checked="checked"' if $arg && $arg == $id;
169             return \qq{<input type="radio" name="}, $name, \qq{" value="$id" $checked />};
170         },
171     },
172     (map {
173         my $value = RT->Config->Get($_);
174         $_ => { value => sub { return \$value } };
175     
176     } qw(WebPath WebBaseURL WebURL)),
177     WebRequestPath    => { value => sub { substr( $m->request_path, 1 ) } },
178     WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } },
179 };
180
181 $COLUMN_MAP->{'CF'} = $COLUMN_MAP->{'CustomField'};
182
183 </%ONCE>
184 <%INIT>
185 $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 );
186 $m->callback( COLUMN_MAP => $COLUMN_MAP );
187
188 # first deal with class specific things
189 my $class_map = $m->comp("/Elements/$Class/ColumnMap", Attr => $Attr, Name => $Name );
190 return $class_map if defined $class_map;
191 return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr );
192
193 </%INIT>