2013-07-28 21:27:28 +00:00
|
|
|
{include file='header' pageTitle='chat.acp.log.title'}
|
2013-07-29 22:23:14 +00:00
|
|
|
|
2013-09-05 18:50:47 +00:00
|
|
|
<script data-relocate="true" src="{$__wcf->getPath('chat')}acp/js/be.bastelstu.Chat.ACP.Log{if !ENABLE_DEBUG_MODE}.min{/if}.js?version={PACKAGE_VERSION|rawurlencode}"></script>
|
|
|
|
|
|
|
|
<script data-relocate="true">
|
2013-07-29 22:23:14 +00:00
|
|
|
//<![CDATA[
|
|
|
|
$(function() {
|
2013-09-05 18:50:47 +00:00
|
|
|
be.bastelstu.Chat.ACP.Log.TabMenu.init();
|
2013-07-29 22:23:14 +00:00
|
|
|
WCF.TabMenu.init();
|
|
|
|
});
|
|
|
|
//]]>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2013-07-28 21:27:28 +00:00
|
|
|
<header class="boxHeadline">
|
|
|
|
<h1>{lang}{@$pageTitle}{/lang}</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<form method="post" action="{link controller='MessageLog' application='chat'}{/link}">
|
|
|
|
<div class="container containerPadding marginTop">
|
|
|
|
<fieldset>
|
|
|
|
<legend>{lang}wcf.global.filter{/lang}</legend>
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><label for="id">{lang}chat.general.room{/lang}</label></dt>
|
|
|
|
<dd>
|
|
|
|
<select id="id" name="id">
|
|
|
|
{foreach from=$rooms item='roomBit'}
|
|
|
|
<option value="{$roomBit->roomID}"{if $roomBit->roomID == $room->roomID} selected="selected"{/if}>{$roomBit}</option>
|
|
|
|
{/foreach}
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
<dl{if $errorField == 'date'} class="formError"{/if}>
|
|
|
|
<dt><label for="date">{lang}chat.general.time{/lang}</label></dt>
|
|
|
|
<dd>
|
|
|
|
<input id="date" type="date" name="date" value="{$date|date:'Y-m-d'}" />
|
|
|
|
{if $errorField == 'date'}
|
|
|
|
<small class="innerError">
|
|
|
|
{lang}chat.acp.log.date.error.{$errorType}{/lang}
|
|
|
|
</small>
|
|
|
|
{/if}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="formSubmit">
|
|
|
|
<input type="submit" value="{lang}wcf.global.button.submit{/lang}" accesskey="s" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{if $messages|count == 0}
|
|
|
|
{if $errorField === ""}
|
|
|
|
<p class="info">{lang}wcf.global.noItems{/lang}</p>
|
|
|
|
{/if}
|
|
|
|
{else}
|
2013-09-05 18:50:47 +00:00
|
|
|
<div id="messageLogContent" class="tabMenuContainer marginTop" data-active="timeTab-0" data-store="activeTabMenuItem" data-base-time="{$date}" data-room-id="{$room->roomID}">
|
2013-07-29 22:23:14 +00:00
|
|
|
<nav class="tabMenu">
|
|
|
|
<ul>
|
|
|
|
{section name=tabLoop loop=24 step=3}
|
2013-09-05 18:50:47 +00:00
|
|
|
<li>
|
|
|
|
{assign var=anchor value='timeTab-'|concat:$tabLoop}
|
|
|
|
<a href="{@$__wcf->getAnchor($anchor)}">{if $tabLoop < 10}0{/if}{$tabLoop}:00 - {if $tabLoop + 2 < 10}0{/if}{$tabLoop + 2}:59</a>
|
|
|
|
</li>
|
2013-07-29 22:23:14 +00:00
|
|
|
{/section}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2013-07-28 21:27:28 +00:00
|
|
|
|
2013-07-29 22:23:14 +00:00
|
|
|
{section name=contentLoop loop=24 step=3}
|
2013-09-05 18:50:47 +00:00
|
|
|
<div id="timeTab-{$contentLoop}" class="container containerPadding tabMenuContainer tabMenuContent" data-menu-item="timeTab-{$contentLoop}">
|
|
|
|
<nav class="menu">
|
|
|
|
<ul>
|
|
|
|
{section name=subTabLoop loop=6}
|
2013-07-29 22:23:14 +00:00
|
|
|
{assign var=subAnchor value='timeTab-'|concat:$contentLoop|concat:'-subTab-'|concat:$subTabLoop}
|
2013-09-05 18:50:47 +00:00
|
|
|
<li data-hour="{$contentLoop + $subTabLoop / 2|floor}" data-minutes="{($subTabLoop % 2) * 30}">
|
|
|
|
<a href="{@$__wcf->getAnchor($subAnchor)}">{if $contentLoop + $subTabLoop / 2 < 10}0{/if}{$contentLoop + $subTabLoop / 2|floor}:{if $subTabLoop % 2 == 0}0{/if}{($subTabLoop % 2) * 30} - {if $contentLoop + $subTabLoop / 2 < 10}0{/if}{$contentLoop + $subTabLoop / 2|floor}:{($subTabLoop % 2) * 30 + 29}</a>
|
|
|
|
</li>
|
|
|
|
{/section}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
{section name=subTabLoop loop=6}
|
|
|
|
{assign var=subAnchor value='timeTab-'|concat:$contentLoop|concat:'-subTab-'|concat:$subTabLoop}
|
|
|
|
<div id="{$subAnchor}" class="hidden subTabMenuContent{if !$messages[$contentLoop * 2 + $subTabLoop]|isset} empty{else} tabularBox{/if}">
|
|
|
|
{if $messages[$contentLoop * 2 + $subTabLoop]|isset}
|
|
|
|
{include application='chat' file='__messageLogTable' sandbox='true' messages=$messages[$contentLoop * 2 + $subTabLoop]}
|
2013-08-02 17:38:13 +00:00
|
|
|
{/if}
|
2013-09-05 18:50:47 +00:00
|
|
|
</div>
|
|
|
|
{/section}
|
|
|
|
</div>
|
2013-07-29 22:23:14 +00:00
|
|
|
{/section}
|
2013-07-28 21:27:28 +00:00
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{include file='footer'}
|