*** empty log message ***
This commit is contained in:
parent
855ae6dcd4
commit
50f493d4d2
7 changed files with 550 additions and 11 deletions
|
@ -0,0 +1,13 @@
|
|||
{$SCHEDULER->buildDay()}
|
||||
|
||||
Day View
|
||||
|
||||
<table border=1>
|
||||
|
||||
{foreach from=$SCHEDULER->Day item="_Hour"}
|
||||
|
||||
<tr><td><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}')">{$_Hour.hour}</td></tr>
|
||||
|
||||
{/foreach}
|
||||
|
||||
</table>
|
|
@ -4,7 +4,7 @@
|
|||
<input type="button" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=day')" value="Day">
|
||||
<input type="button" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=week')" value="Week">
|
||||
<input type="button" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=month')" value="Month">
|
||||
<input type="button" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&view=input')" value="Input">
|
||||
<input type="button" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.displaySchedule')" value="Display Scheduler">
|
||||
|
||||
{include file="scheduler/calendar.tpl"}
|
||||
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
{$SCHEDULER->buildWeek()}
|
||||
|
||||
Week View
|
||||
|
||||
<table border=1>
|
||||
|
||||
<tr>
|
||||
{foreach from=$SCHEDULER->Week item="_Weekday"}
|
||||
<td>{$_Weekday.label.full}</td>
|
||||
{/foreach}
|
||||
</tr>
|
||||
|
||||
{foreach from=$SCHEDULER->Week item="_Day"}
|
||||
{if $_Day.isFirst}
|
||||
<tr>
|
||||
{/if}
|
||||
|
||||
{if $_Day.isEmpty}
|
||||
<td> </td>
|
||||
{else}
|
||||
<td><a href="#" onClick="hpopup('{$UI_HANDLER}?act=SCHEDULER.set&day={$_Day.day}')">{$_Day.day}</td>
|
||||
{/if}
|
||||
|
||||
{if $_Day.isLast}
|
||||
</tr>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue