import rt 3.8.7
[freeside.git] / rt / share / html / Helpers / CalPopup.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 %#                                          <jesse@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 <& /Elements/Header, ShowBar => 0 &>
49 %# From /Elements/Header
50 </div>
51 <div id="body" class="calpopup">
52
53 <a href="#" onclick="window.close(); return false;"><&|/l&>Close window</&></a>
54
55 <div class="calendar">
56   <table>
57     <caption>
58       <a class="prev" href="CalPopup.html?DisplayedMonth=<%$prev_month%>&DisplayedYear=<%$prev_year%>&field=<%$field%>"><&|/l&>Prev</&></a>
59       <span class="month"><% $months[$DisplayedMonth-1] %> <% $DisplayedYear %></span>
60       <a class="next" href="CalPopup.html?DisplayedMonth=<%$next_month%>&DisplayedYear=<%$next_year%>&field=<%$field%>"><&|/l&>Next</&></a>
61     </caption>
62     <tr>
63 % foreach my $wday (@weekdays) {
64       <th><%$wday%></th>
65 % }
66     </tr>
67 % foreach my $week (@cal) {
68     <tr>
69 %     foreach my $day (@{$week}) {
70       <td>
71 %         if ($day) {
72 %             my $datestr = sprintf('%04d-%02d-%02d', $DisplayedYear, $DisplayedMonth, $day);
73 % my $class;
74 % if ( ( $DisplayedYear == $today[5] + 1900 ) && ( $DisplayedMonth == $today[4] + 1 ) && ( $day == $today[3] ) ) {
75 %     $class = 'today';
76 % }
77         <a <% $class && 'class="'.$class.'"' |n%> href="#" onclick="updateParentField('<% $field %>','<% $datestr %>'); return false;"><% $day %></a>
78 %         } else {
79         &nbsp;
80 %         }
81       </td>
82 %     } #foreach $day
83     </tr>
84 % } # foreach $week
85   </table>
86 </div>
87 </div>
88 </body>
89 </html>
90 % $m->abort();
91
92 <%init>
93 use Calendar::Simple;
94 my @today = localtime(time());
95
96 my @weekdays;
97 push @weekdays, loc($_)
98   for qw(Sun Mon Tue Wed Thu Fri Sat);
99
100 my @months;
101 push @months, loc($_)
102   for qw(January February March April May June July August
103          September October November December);
104
105 unless ($DisplayedYear) {
106     $DisplayedMonth = $today[4] + 1;
107     $DisplayedYear  = ($today[5] + 1900);
108 }
109
110 my ($prev_year, $next_year, $prev_month, $next_month);
111 $prev_month = $next_month = $DisplayedMonth;
112 $prev_year  = $next_year  = $DisplayedYear;
113
114 $next_month++;
115 $prev_month--;
116
117 if ($DisplayedMonth == 12) {
118     $next_year++;
119     $next_month = 1;
120 }
121 elsif ($DisplayedMonth == 1) {
122     $prev_month = 12;
123     $prev_year--;
124 }
125
126 my @cal = calendar($DisplayedMonth, $DisplayedYear);
127 </%init>
128
129 <%args>
130 $field => 'none'
131 $DisplayedMonth => undef
132 $DisplayedYear => undef
133 </%args>