File: /www/wwwroot/oa.sanjiangapp.com/app/team/forum/view/index.html.php
<?php
/**
* The index view file of forum 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 Chunsheng Wang <chunsheng@cnezsoft.com>
* @package forum
* @version $Id: index.html.php 4029 2016-08-26 06:50:41Z liugang $
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php'; ?>
<div id='boards'>
<?php foreach($boards as $parentBoard):?>
<div class='panel'>
<div class='panel-heading'>
<strong><i class='icon-comment icon-large'></i> <?php echo $parentBoard->name;?></strong>
</div>
<div class='panel-body'>
<table class='table'>
<tbody>
<tr>
<?php $i = 0;?>
<?php foreach($parentBoard->children as $childBoard):?>
<?php $count = count($parentBoard->children);?>
<?php if($count == 1) $width = '100%';?>
<?php if($count == 2) $width = '50%';?>
<?php if($count > 2) $width = '33%';?>
<?php $i++;?>
<td width="<?php echo $width;?>">
<table class='board'>
<tbody>
<tr class='board'>
<td>
<?php echo $this->forum->isNew($childBoard) ? "<span class='text-success'><i class='icon-comment'></i></span>" : "<span class='text-muted'><i class='icon-comment'></i></span>"; ?>
<?php commonModel::printLink('forum', 'board', "id=$childBoard->id", $childBoard->name, "class='name'");?>
<?php if($childBoard->desc) echo "<small class='text-muted'> [ " . $childBoard->desc . ' ] </small>';?>
</td>
</tr>
<tr class='board'>
<td>
<div>
<?php
if($childBoard->moderators[0]) printf("<span class='moderators hidden-xxs'>" . $lang->forum->lblOwner . '</span>', trim(implode(',', $childBoard->moderators), ',')) . ' ';
if($childBoard->postedBy)
{
echo $lang->forum->threadCount . $lang->colon . $childBoard->threads . ' ' . $lang->forum->postCount . $lang->colon . $childBoard->posts;
}
?>
</div>
<div>
<?php
if($childBoard->postedBy)
{
$postedBy = html::a($this->createLink('thread', 'locate', "threadID={$childBoard->postID}&replyID={$childBoard->replyID}"), zget($users, $childBoard->postedBy));
echo sprintf($lang->forum->lastPost, formatTime($childBoard->postedDate, DT_DATETIME2), $postedBy);
}
else
{
echo $lang->forum->noPost;
}
?>
</div>
</td>
</tr>
</tbody>
</table>
<?php if(($i % 3) != 0 && $i != $count):?>
<div class='divider-right'></div>
<?php endif;?>
</td>
<?php if(($i % 3) == 0) echo $i == $count ? "" : "</tr><tr>";?>
<?php endforeach;?>
<?php
if(($i % 3) == 1) echo $count == 1 ? "" : "<td></td><td></td>";
if(($i % 3) == 2) echo $count == 2 ? "" : "<td></td>";
?>
</tr>
</tbody>
</table>
</div>
</div>
<?php endforeach;?>
</div>
<?php include '../../common/view/footer.html.php'; ?>