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-08 20:40:09 +00:00
|
|
|
{if CHAT_LOG_ARCHIVETIME !== 0}
|
2013-10-16 17:46:06 +00:00
|
|
|
<script data-relocate="true" src="{$__wcf->getPath('chat')}acp/js/be.bastelstu.Chat.ACP.Log.js?version={PACKAGE_VERSION|rawurlencode}"></script>
|
2014-02-28 16:06:50 +00:00
|
|
|
|
2013-09-08 20:40:09 +00:00
|
|
|
{if $errorField === ''}
|
|
|
|
<script data-relocate="true">
|
|
|
|
//<![CDATA[
|
|
|
|
$(function() {
|
|
|
|
be.bastelstu.Chat.ACP.Log.TabMenu.init();
|
|
|
|
WCF.TabMenu.init();
|
|
|
|
});
|
|
|
|
//]]>
|
|
|
|
</script>
|
|
|
|
{/if}
|
2013-09-05 19:59:03 +00:00
|
|
|
{/if}
|
2013-07-29 22:23:14 +00:00
|
|
|
|
2013-07-28 21:27:28 +00:00
|
|
|
<header class="boxHeadline">
|
|
|
|
<h1>{lang}{@$pageTitle}{/lang}</h1>
|
|
|
|
</header>
|
|
|
|
|
2013-09-08 20:40:09 +00:00
|
|
|
{if CHAT_LOG_ARCHIVETIME !== 0}
|
|
|
|
<form method="post" action="{link controller='MessageLog' application='chat'}{/link}">
|
|
|
|
<div class="container containerPadding marginTop">
|
|
|
|
<fieldset>
|
|
|
|
<legend>{lang}wcf.global.filter{/lang}</legend>
|
|
|
|
|
|
|
|
<dl>
|
2014-02-27 17:55:53 +00:00
|
|
|
<dt><label for="id">{lang}chat.global.room{/lang}</label></dt>
|
2013-09-08 20:40:09 +00:00
|
|
|
<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}>
|
2014-02-27 17:55:53 +00:00
|
|
|
<dt><label for="date">{lang}chat.global.time{/lang}</label></dt>
|
2013-09-08 20:40:09 +00:00
|
|
|
<dd>
|
2013-10-02 14:29:00 +00:00
|
|
|
<input id="date" type="date" name="date" min="{TIME_NOW-CHAT_LOG_ARCHIVETIME*60|date:'Y-m-d'}" max="{TIME_NOW|date:'Y-m-d'}" value="{$date|date:'Y-m-d'}" />
|
2013-09-08 20:40:09 +00:00
|
|
|
{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>
|
2014-02-28 16:06:50 +00:00
|
|
|
|
2013-09-08 20:40:09 +00:00
|
|
|
<div class="contentNavigation">
|
|
|
|
<nav>
|
2013-07-29 22:23:14 +00:00
|
|
|
<ul>
|
2013-09-08 20:40:09 +00:00
|
|
|
<li>
|
|
|
|
<a class="button" href="{link controller='MessageLogDownload' application='chat' object=$room date=$date|date:'Y-m-d'}{/link}">
|
|
|
|
<span class="icon icon16 icon-download-alt"></span>
|
|
|
|
<span>{lang}chat.acp.log.download{/lang}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2013-07-29 22:23:14 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
2013-07-28 21:27:28 +00:00
|
|
|
</div>
|
2014-02-28 16:06:50 +00:00
|
|
|
|
2013-09-08 20:40:09 +00:00
|
|
|
{if $errorField === ''}
|
|
|
|
<div id="messageLogContent" class="tabMenuContainer marginTop" data-active="timeTab-0" data-store="activeTabMenuItem" data-base-time="{$date}" data-room-id="{$room->roomID}">
|
|
|
|
<nav class="tabMenu">
|
|
|
|
<ul>
|
|
|
|
{section name=tabLoop loop=24 step=3}
|
|
|
|
<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>
|
|
|
|
{/section}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
{section name=contentLoop loop=24 step=3}
|
|
|
|
<div id="timeTab-{$contentLoop}" class="container containerPadding tabMenuContainer tabMenuContent" data-menu-item="timeTab-{$contentLoop}">
|
|
|
|
<nav class="menu">
|
|
|
|
<ul>
|
|
|
|
{section name=subTabLoop loop=6}
|
|
|
|
{assign var=subAnchor value='timeTab-'|concat:$contentLoop|concat:'-subTab-'|concat:$subTabLoop}
|
|
|
|
<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 empty"></div>
|
|
|
|
{/section}
|
|
|
|
</div>
|
|
|
|
{/section}
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{else}
|
|
|
|
<p class="error">{lang}chat.acp.log.error.disabled{/lang}</p>
|
2013-07-28 21:27:28 +00:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
{include file='footer'}
|