83 lines
3.4 KiB
PHP
83 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* The todo mobile view file of user 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 user
|
|
* @version $Id: index.html.php 3830 2016-05-18 09:34:17Z liugang $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
|
|
<?php
|
|
$bodyClass = 'with-menu-top';
|
|
include "../../common/view/m.header.html.php";
|
|
include "./m.featurebar.html.php";
|
|
?>
|
|
|
|
<nav id='subMenu' class='menu nav gray'>
|
|
<?php
|
|
foreach($lang->todo->periods as $period => $label)
|
|
{
|
|
$vars = "userID={$user->id}&date=$period";
|
|
if($period == 'before') $vars .= "&status=undone";
|
|
echo html::a(inlink('todo', $vars), $label);
|
|
}
|
|
?>
|
|
<a class='moreSubMenu hidden' data-display='dropdown' data-placement='beside-bottom'><?php echo $lang->more;?></a>
|
|
<div id='moreSubMenu' 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>
|
|
<nav class='nav'><a class='btn primary' href='<?php echo $this->createLink('company', 'browse');?>'><?php echo $lang->goback;?></a></nav>
|
|
</div>
|
|
|
|
<section id='page' class='section list-with-pager'>
|
|
<div class='box' data-page='<?php echo $pager->pageID ?>' data-refresh-url='<?php echo $this->createLink('user', 'todo', "userID={$user->id}&type=$type&status=$status&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}"); ?>'>
|
|
<table class='table bordered'>
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo $lang->todo->name;?></th>
|
|
<th class='text-center w-70px'><?php echo $lang->todo->beginAB;?></th>
|
|
<th class='text-center w-70px'><?php echo $lang->todo->endAB;?></th>
|
|
<th class='text-center w-70px'><?php echo $lang->todo->status;?></th>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach($todos as $todo):?>
|
|
<tr class='text-center' data-url='<?php echo $this->createLink('todo', 'view', "id=$todo->id");?>' data-id='<?php echo $todo->id;?>'>
|
|
<td class='text-left'><?php echo $todo->name;?></td>
|
|
<td><?php echo $todo->begin;?></td>
|
|
<td><?php echo $todo->end;?></td>
|
|
<td class='todo-<?php echo $todo->status;?>'><?php echo zget($lang->todo->statusList, $todo->status);?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
</div>
|
|
|
|
<nav class='nav justify pager'>
|
|
<?php $pager->show($align = 'justify');?>
|
|
</nav>
|
|
</section>
|
|
|
|
<div class='list sort-panel enter-from-bottom hidden affix layer' id='sortPanel'>
|
|
<?php
|
|
$vars = "account=$account&type=$type&status=$status&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}";
|
|
$orders = array('id', 'date', 'type', 'pri', 'name', 'begin', 'end', 'status');
|
|
foreach ($orders as $order)
|
|
{
|
|
commonModel::printOrderLink($order, $orderBy, $vars, '<i class="icon icon-sort-indicator"></i>' . $lang->todo->{$order});
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<script>
|
|
$('#<?php echo $methodName?>' + 'Tab').addClass('active');
|
|
$('#subMenu > a').removeClass('active').filter('[href*="<?php echo $type?>"]').addClass('active');
|
|
</script>
|
|
<?php include "../../common/view/m.footer.html.php"; ?>
|