no need for FS calendar buttons in RT 4.2
[freeside.git] / rt / share / html / Elements / ShowCustomFields
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2017 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 % $m->callback( CallbackName => 'BeforeCustomFields', Object => $Object,
49 %               Grouping => $Grouping, ARGSRef => \%ARGS, CustomFields => $CustomFields, Table => $Table );
50 % if ($Table) {
51 <table>
52 % }
53 % foreach my $set ($CustomFields, $HiddenCustomFields) {
54 %   $set->GotoFirstItem;
55 %   while ( my $CustomField = $set->Next ) {
56 %     my $Values = $Object->CustomFieldValues( $CustomField->Id );
57 %     my $count = $Values->Count;
58 %     next if $HideEmpty and not $count;
59 %     next if $count == 0 and $CustomField->Disabled;
60   <tr id="CF-<%$CustomField->id%>-ShowRow">
61     <td class="label"><% $CustomField->Name %>:</td>
62     <td class="value">
63 %     if ( $count == 0 ) {
64 <i><&|/l&>(no value)</&></i>
65 %     } elsif ( $count == 1 ) {
66 %       $print_value->( $CustomField, $Values->First );
67 %     } else {
68 <ul>
69 %       while ( my $Value = $Values->Next ) {
70 <li>
71 %         $print_value->( $CustomField, $Value );
72 </li>
73 %       }
74 </ul>
75 %     }
76     </td>
77 % $m->callback( CallbackName => 'AfterCustomFieldValue', CustomField => $CustomField,
78 %               Object => $Object, Grouping => $Grouping, Table => $Table );
79   </tr>
80 %   }
81 % }
82 % if ($Table) {
83 </table>
84 % }
85 % $m->callback( CallbackName => 'AfterCustomFields', Object => $Object,
86 %               Grouping => $Grouping, ARGSRef => \%ARGS, Table => $Table );
87 <%INIT>
88 $m->callback(
89     %ARGS,
90     CallbackName => 'MassageCustomFields',
91     Object       => $Object,
92     CustomFields => $CustomFields,
93     Table        => $Table,
94 );
95
96 # kludge to allow "Support time" to be displayed even though it's been
97 # removed
98 my $HiddenCustomFields = RT::CustomFields->new($session{'CurrentUser'});
99 $HiddenCustomFields->LimitToChildType(ref $Object);
100 $HiddenCustomFields->Limit( FIELD => 'Type', VALUE => 'TimeValue' );
101 $HiddenCustomFields->LimitToDeleted;
102
103 $CustomFields->LimitToGrouping( $Object => $Grouping ) if defined $Grouping;
104
105 # don't print anything if there is no custom fields
106 return unless $CustomFields->Count > 0 or $HiddenCustomFields->Count > 0;
107
108 my $print_value = sub {
109     my ($cf, $value) = @_;
110     my $linked = $value->LinkValueTo;
111     if ( defined $linked && length $linked ) {
112         my $linked = $m->interp->apply_escapes( $linked, 'h' );
113         $m->out('<a href="'. $linked .'" target="_blank">');
114     }
115     my $comp = "ShowCustomField". $cf->Type;
116     $m->callback(
117         CallbackName => 'ShowComponentName',
118         Name         => \$comp,
119         CustomField  => $cf,
120         Object       => $Object,
121         Table        => $Table,
122     );
123     if ( $m->comp_exists( $comp ) ) {
124         $m->comp( $comp, Object => $value );
125     } else {
126         $m->out( $m->interp->apply_escapes( $value->Content, 'h' ) );
127     }
128     $m->out('</a>') if defined $linked && length $linked;
129
130     # This section automatically populates a div with the "IncludeContentForValue" for this custom
131     # field if it's been defined
132     if ( $cf->IncludeContentForValue ) {
133        my $vid = $value->id;
134        $m->out(   '<div class="object_cf_value_include" id="object_cf_value_'. $vid .'">' );
135        $m->out( loc("See also:") );
136        $m->out(   '<a href="'. $m->interp->apply_escapes($value->IncludeContentForValue, 'h') .'">' );
137        $m->out( $m->interp->apply_escapes($value->IncludeContentForValue, 'h') );
138        $m->out(   qq{</a></div>\n} );
139        $m->out(   qq{<script><!--\njQuery('#object_cf_value_$vid').load(} );
140        $m->out(   $m->interp->apply_escapes($value->IncludeContentForValue, 'j') );
141        $m->out(   qq{);\n--></script>\n} );
142     }
143 };
144
145 </%INIT>
146 <%ARGS>
147 $Object => undef
148 $CustomFields => $Object->CustomFields
149 $Grouping => undef
150 $Table => 1
151 $HideEmpty => 0
152 </%ARGS>