aboutsummaryrefslogtreecommitdiffstats
path: root/template/default/month_calendar.tpl
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-03-13 00:00:52 +0000
committerplegall <plg@piwigo.org>2010-03-13 00:00:52 +0000
commit14778ce673277f2df41f963aa70df1cbed427294 (patch)
tree8c723d4d9827876dbf19d2bd581405fc50910860 /template/default/month_calendar.tpl
parentc396f08708d431c6f7e8656eaca4fd8e440fdd39 (diff)
feature 1502: based on Dotclear model, P@t has reorganized the way Piwigo
manages template/theme in a simpler "theme only level" architecture. It supports multiple level inheritance. git-svn-id: http://piwigo.org/svn/trunk@5123 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default/month_calendar.tpl')
-rw-r--r--template/default/month_calendar.tpl86
1 files changed, 0 insertions, 86 deletions
diff --git a/template/default/month_calendar.tpl b/template/default/month_calendar.tpl
deleted file mode 100644
index 45d6079e1..000000000
--- a/template/default/month_calendar.tpl
+++ /dev/null
@@ -1,86 +0,0 @@
-
-{if !empty($chronology_navigation_bars) }
-{foreach from=$chronology_navigation_bars item=bar}
-<div class="calendarBar">
- {if isset($bar.previous)}
- <div style="float:left">&laquo; <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> &raquo;</div>
- {/if}
- {if empty($bar.items)}
- &nbsp;
- {else}
- {foreach from=$bar.items item=item}
- <span class="calItem{if !isset($item.URL)}Empty{/if}" {if isset($item.NB_IMAGES)}title="{$pwg->l10n_dec('%d element', '%d elements', $item.NB_IMAGES)}"{/if}>
- {if isset($item.URL)}
- <a href="{$item.URL}">{$item.LABEL}</a>
- {else}
- {$item.LABEL}
- {/if}
- </span>
- {/foreach}
- {/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>
- {foreach from=$bar.items item=item}
- <span class="calCal{if !isset($item.URL)}Empty{/if}">
- {if isset($item.URL)}
- <a href="{$item.URL}">{$item.LABEL}</a>
- {else}
- {$item.LABEL}
- {/if}
- {if isset($item.NB_IMAGES)}({$item.NB_IMAGES}){/if}
- </span>
- {/foreach}
-</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}
-