design/src/messenger/webim/view/thread_log.php

83 lines
1.9 KiB
PHP

<?php
/*
* This file is part of Web Instant Messenger project.
*
* Copyright (c) 2005-2009 Web Messenger Community
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Evgeny Gryaznov - initial API and implementation
*/
$page['title'] = getlocal("thread.chat_log");
function tpl_content() { global $page, $webimroot, $errors;
$chatthread = $page['thread'];
?>
<?php echo getlocal("thread.intro") ?>
<br/><br/>
<div class="logpane">
<div class="header">
<div class="wlabel">
<?php echo getlocal("page.analysis.search.head_name") ?>:
</div>
<div class="wvalue">
<?php echo topage(htmlspecialchars($chatthread['userName'])) ?>
</div>
<br clear="all"/>
<div class="wlabel">
<?php echo getlocal("page.analysis.search.head_host") ?>:
</div>
<div class="wvalue">
<?php echo get_user_addr(topage($chatthread['remote'])) ?>
</div>
<br clear="all"/>
<?php if( $chatthread['agentName'] ) { ?>
<div class="wlabel">
<?php echo getlocal("page.analysis.search.head_operator") ?>:
</div>
<div class="wvalue">
<?php echo topage(htmlspecialchars($chatthread['agentName'])) ?>
</div>
<br clear="all"/>
<?php } ?>
<div class="wlabel">
<?php echo getlocal("page.analysis.search.head_time") ?>:
</div>
<div class="wvalue">
<?php echo date_diff($chatthread['modified']-$chatthread['created']) ?>
(<?php echo strftime("%B, %d %Y %H:%M:%S", $chatthread['created']) ?>)
</div>
<br clear="all"/>
</div>
<div class="message">
<?php
foreach( $page['threadMessages'] as $message ) {
echo $message;
}
?>
</div>
</div>
<br />
<a href="<?php echo $webimroot ?>/operator/history.php">
<?php echo getlocal("thread.back_to_search") ?></a>
<br />
<?php
} /* content */
require_once('inc_main.php');
?>