File: /www/wwwroot/oa.sanjiangapp.com/app/sys/message/view/admin.html.php
<?php
/**
* The admin view file of message module of chanzhiEPS.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package message
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php js::set('type', $type);?>
<div class="panel">
<div class="panel-heading">
<strong><?php echo $type == 'message' ? ('<i class="icon-comment-alt"></i> ' . $lang->message->common) : ('<i class="icon-comments-alt"></i> ' . $lang->comment->common) ?></strong>
<?php
echo ' ';
echo html::a(inlink('admin', "type={$type}&status=0"), $lang->message->statusList[0], $status == 0 ? "class='active'" : '');
echo html::a(inlink('admin', "type={$type}&status=1"), $lang->message->statusList[1], $status == 1 ? "class='active'" : '');
?>
</div>
<table class='table table-bordered'>
<thead>
<tr>
<th class='w-60px'><?php echo $lang->message->id;?></th>
<th><?php echo $lang->message->content;?></th>
<th class='text-center w-180px'><?php echo $lang->actions;?></th>
</tr>
</thead>
<tbody>
<?php foreach($messages as $messageID => $message):?>
<tr>
<td rowspan='2' class='text-center'><strong><?php echo $message->id;?></strong></td>
<?php if($message->type == 'comment'):?>
<td>
<?php
$config->requestType = $config->frontRequestType;
if($message->objectTitle != '')
{
$objectViewLink = html::a($message->objectViewURL, $message->objectTitle, "target='_blank'");
}
else
{
$objectViewLink = "<span class='alert-error'>{$lang->comment->deletedObject}</span>";
}
$config->requestType = 'GET';
$date = formatTime($message->date, DT_DATETIME1);
echo <<<EOT
<i class='icon-user'></i> <strong>$message->from</strong> <i class='icon-envelope green icon'></i> $message->email
<span class='gray'>{$date}</span> {$lang->comment->commentTo}
$objectViewLink
EOT;
?>
</td>
<?php else:?>
<td>
<?php echo "<i class='icon-user'></i> <strong>{$message->from}</strong> ";?>
<?php echo "<span class='gray'>" . formatTime($message->date, DT_DATETIME1) . "</span><br/>";?>
<?php if(!empty($message->phone)) echo "<i class='icon-phone text-info icon'></i> {$message->phone} ";?>
<?php if(!empty($message->email)) echo "<i class='icon-envelope text-warning icon'></i> {$message->email} ";?>
<?php if(!empty($message->qq)) echo "<strong class='text-danger'>QQ</strong> {$message->qq} ";?>
</td>
<?php endif;?>
<td rowspan='2' class='text-center text-middle'>
<?php
echo html::a(inlink('reply', "messageID=$message->id"), $lang->message->reply, "data-toggle='modal'");
echo html::a(inlink('delete', "messageID=$message->id&type=single&status=$status"), $lang->message->delete, "class='deleter'");
if($status == 0) echo html::a(inlink('pass', "messageID=$message->id&type=single"), $lang->message->pass, "class='pass'");
echo '<br />';
if($status == 0) echo html::a(inlink('delete', "messageID=$message->id&type=pre&status=$status"), $lang->message->deletePre, "class='pre' data-confirm='{$lang->message->confirmDeletePre}'");
if($status == 0) echo html::a(inlink('pass', "messageID=$message->id&type=pre"), $lang->message->passPre, "class='pre' data-confirm='{$lang->message->confirmPassPre}'");
?>
</td>
</tr>
<tr>
<td class='content-box'>
<?php echo html::textarea('', $message->content, "rows='2' class='form-control borderless' spellcheck='false'");?>
<?php
if(!empty($replies[$messageID]))
{
echo "<dl class='alert alert-info'>";
foreach($replies[$messageID] as $reply)
{
printf($lang->message->replyItem, $reply->from, formatTime($reply->date, DT_DATETIME1), $reply->content);
}
echo '</dl>';
}
?>
</td>
</tr>
<?php endforeach;?>
</tbody>
<tfoot><tr><td colspan='3' class='text-right'><?php $pager->show();?></td></tr></tfoot>
</table>
</div>
<?php include '../../common/view/footer.html.php';?>