84 lines
3.8 KiB
PHP
84 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* The todo view file of dashboard module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2011 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package dashboard
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/tablesorter.html.php';?>
|
|
<form method='post' target='hiddenwin' action='<?php echo $this->createLink('todo', 'import2Today');?>' id='todoform'>
|
|
<div id='featurebar'>
|
|
<div class='f-left'>
|
|
<?php
|
|
echo '<span id="today">' . html::a(inlink('todo', "date=today"), $lang->todo->todayTodos) . '</span>';
|
|
echo '<span id="thisweek">' . html::a(inlink('todo', "date=thisweek"), $lang->todo->thisWeekTodos) . '</span>';
|
|
echo '<span id="lastweek">' . html::a(inlink('todo', "date=lastweek"), $lang->todo->lastWeekTodos) . '</span>';
|
|
echo '<span id="all">' . html::a(inlink('todo', "date=all"), $lang->todo->allDaysTodos) . '</span>';
|
|
echo '<span id="before">' . html::a(inlink('todo', "date=before&account={$app->user->account}&status=undone"), $lang->todo->allUndone) . '</span>';
|
|
echo "<span id='$date'>" . html::select('date', $dates, $date, 'onchange=changeDate(this.value)') . '</span>';
|
|
?>
|
|
<script>$('#<?php echo $type;?>').addClass('active')</script>
|
|
</div>
|
|
<div class='f-right'><?php echo html::a($this->createLink('todo', 'create', "date=$date"), $lang->todo->create);?></div>
|
|
</div>
|
|
<table class='table-1 tablesorter'>
|
|
<thead>
|
|
<tr class='colhead'>
|
|
<th class='w-id'><?php echo $lang->idAB;?></th>
|
|
<th class='w-date'><?php echo $lang->todo->date;?></th>
|
|
<th class='w-type'><?php echo $lang->todo->type;?></th>
|
|
<th class='w-pri'><?php echo $lang->priAB;?></th>
|
|
<th><?php echo $lang->todo->name;?></th>
|
|
<th class='w-hour'><?php echo $lang->todo->beginAB;?></th>
|
|
<th class='w-hour'><?php echo $lang->todo->endAB;?></th>
|
|
<th class='w-status'><?php echo $lang->todo->status;?></th>
|
|
<th class='w-140px {sorter:false}'><?php echo $lang->actions;?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach($todos as $todo):?>
|
|
<tr class='a-center'>
|
|
<td class='a-left'>
|
|
<?php
|
|
if($importFeature) echo "<input type='checkbox' name='todos[]' value='$todo->id' /> ";
|
|
echo $todo->id;
|
|
?>
|
|
</td>
|
|
<td><?php echo $todo->date;?></td>
|
|
<td><?php echo $lang->todo->typeList->{$todo->type};?></td>
|
|
<td><?php echo $todo->pri;?></td>
|
|
<td class='a-left'><?php echo html::a($this->createLink('todo', 'view', "id=$todo->id&from=my"), $todo->name);?></td>
|
|
<td><?php echo $todo->begin;?></td>
|
|
<td><?php echo $todo->end;?></td>
|
|
<td class='<?php echo $todo->status;?>'><?php echo $lang->todo->statusList[$todo->status];?></td>
|
|
<td>
|
|
<?php
|
|
echo html::a($this->createLink('todo', 'mark', "id=$todo->id&status=$todo->status"), $lang->todo->{'mark'.ucfirst($todo->status)}, 'hiddenwin');
|
|
echo html::a($this->createLink('todo', 'view', "id=$todo->id&from=my"), $lang->todo->viewAB);
|
|
echo html::a($this->createLink('todo', 'edit', "id=$todo->id"), $lang->edit);
|
|
echo html::a($this->createLink('todo', 'delete', "id=$todo->id"), $lang->delete, 'hiddenwin');
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
<?php if($importFeature):?>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan='9'>
|
|
<input type='submit' value='<?php echo $lang->todo->import2Today;?>' />
|
|
</td>
|
|
</tr>
|
|
<?php endif;?>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.html.php';?>
|