68 lines
3.0 KiB
PHP
68 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* The task browse mobile view file of execution module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Fei Chen <chenfei@cnezsoft.com>
|
|
* @package execution
|
|
* @version $Id
|
|
* @link http://www.zentao.net
|
|
*/
|
|
|
|
$bodyClass = 'with-menu-top';
|
|
include "../../common/view/m.header.html.php";
|
|
?>
|
|
|
|
<nav id='menu' class='menu nav affix dock-top canvas'>
|
|
<?php foreach($lang->product->featureBar['all'] as $key => $label):?>
|
|
<?php $active = $key == $browseType ? 'active' : '';?>
|
|
<?php echo html::a($this->createLink('program', 'product', "programID=$program->id&browseType=$key&orderBy=$orderBy"), $label, '', "class='$active'");?>
|
|
<?php endforeach;?>
|
|
<a class='moreMenu hidden' data-display='dropdown' data-placement='beside-bottom'><?php echo $lang->more;?></a>
|
|
<div id='moreMenu' class='list dropdown-menu'></div>
|
|
</nav>
|
|
|
|
<div class='heading'>
|
|
<div class='title'>
|
|
<a id='sortTrigger' class='text-right sort-trigger' data-display data-target='#sortPanel' data-backdrop='true'><i class='icon icon-sort'></i> <span class='sort-name'><?php echo $lang->sort ?></span></a>
|
|
</div>
|
|
</div>
|
|
|
|
<section id='page' class='section list-with-pager'>
|
|
<?php $refreshUrl = $this->createLink('program', 'product', "programID=$program->id&browseType=$browseType&orderBy=$orderBy&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}");?>
|
|
<div class='box' data-page='<?php echo $pager->pageID;?>' data-refresh-url='<?php echo $refreshUrl;?>'>
|
|
<table class='table bordered no-margin'>
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo $lang->product->name;?> </th>
|
|
<th class='text-center w-70px'><?php echo $lang->statusAB;?> </th>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach($products as $product):?>
|
|
<tr class='text-center' data-url='<?php echo $this->createLink('product', 'browse', "productID={$product->id}")?>' data-id='<?php echo $product->id;?>'>
|
|
<td class='text-left'><?php echo $product->name;?></td>
|
|
<td class='task-<?php echo $product->status;?>'><?php echo zget($lang->product->statusList, $product->status);?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
</div>
|
|
|
|
<nav class='nav justify pager'>
|
|
<?php $pager->show($align = 'justify');?>
|
|
</nav>
|
|
</section>
|
|
|
|
<div class='list sort-panel hidden affix enter-from-bottom layer' id='sortPanel'>
|
|
<?php
|
|
$vars = "programID={$program->id}&browseType={$browseType}&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}";
|
|
$sortOrders = array('id', 'name');
|
|
foreach($sortOrders as $sortOrder)
|
|
{
|
|
commonModel::printOrderLink($sortOrder, $orderBy, $vars, '<i class="icon icon-sort-indicator"></i>' . $lang->task->{$sortOrder});
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php include "../../common/view/m.footer.html.php"; ?>
|