blob: 410824b23dd3fd13f3bd1e0f098b37d750e36cf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{* $Id$ *}
{if !empty($chronology_navigation_bars) }
{foreach from=$chronology_navigation_bars item=bar}
<div class="calendarBar">
{if isset($bar.previous)}
<div style="float:left">« <a href="{$bar.previous.URL}">{$bar.previous.LABEL}</a></div>
{/if}
{if isset($bar.next)}
<div style="float:right"><a href="{$bar.next.URL}">{$bar.next.LABEL}</a> »</div>
{/if}
{if isset($bar.CONTENT)}
{$bar.CONTENT}
{else}
{/if}
</div>
{/foreach}
{/if}
{if !empty($chronology_calendar.calendar_bars) }
{foreach from=$chronology_calendar.calendar_bars item=bar}
<div class="calendarCalBar">
<span class="calCalHead"><a href="{$bar.U_HEAD}">{$bar.HEAD_LABEL}</a> ({$bar.NB_IMAGES})</span><br/>
{$bar.NAV_BAR}
</div>
{/foreach}
{/if}
{if isset($chronology_calendar.month_view) }
<table class="calMonth">
<thead>
<tr>
{foreach from=$chronology_calendar.month_view.wday_labels item=wday}
<td class="calDayHead">{$wday}</td>
{/foreach}
</tr>
</thead>
{html_head} {*add the style to html head for strict standard compliance*}
<style type="text/css">
TABLE.calMonth TBODY TD, TABLE.calMonth TBODY TD DIV.calImg {ldelim}
width:{$chronology_calendar.month_view.CELL_WIDTH}px;height:{$chronology_calendar.month_view.CELL_HEIGHT}px;
}
</style>
{/html_head}
{foreach from=$chronology_calendar.month_view.weeks item=week}
<tr>
{foreach from=$week item=day}
{if !empty($day)}
{if isset($day.IMAGE)}
<td class="calDayCellFull">
<div class="calBackDate">{$day.DAY}</div><div class="calForeDate">{$day.DAY}</div>
<div class="calImg">
<a href="{$day.U_IMG_LINK}">
<img style="{$day.IMAGE_STYLE}" src="{$day.IMAGE}" alt="{$day.IMAGE_ALT}" title="{$pwg->l10n_dec('%d element','%d elements', $day.NB_ELEMENTS)}" />
</a>
</div>
{else}
<td class="calDayCellEmpty">{$day.DAY}
{/if}
{else}
<td class="calDayCellBlank">
{/if}
</td>
{/foreach} {*day in week*}
</tr>
{/foreach} {*week in month*}
</table>
{/if}
|