File: /www/wwwroot/oa.sanjiangapp.com/app/team/block/view/threadblock.html.php
<?php
/**
* The thread block view file of block module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Tingting Dai <daitingting@xirangit.com>
* @package block
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<div class='panel-body has-table'>
<table class='table table-data table-hover table-fixed block-thread'>
<?php foreach($threads as $id => $thread):?>
<?php $appid = ($this->get->app == 'sys' and isset($_GET['entry'])) ? "class='app-btn' data-id={$this->get->entry}" : ''?>
<tr data-url='<?php echo $this->createLink('team.thread', 'view', "id=$thread->id"); ?>' <?php echo $appid?>>
<td class='w-80px text-muted'><?php echo formatTime($thread->createdDate, DT_DATE1);?></td>
<td class='w-80px text-muted'><?php echo $thread->authorRealname;?></td>
<td class='c-name' title='<?php echo $thread->title;?>'><?php echo $thread->title;?></td>
</tr>
<?php endforeach;?>
</table>
</div>