139 lines
6.1 KiB
PHP
139 lines
6.1 KiB
PHP
<?php
|
||
/**
|
||
* The view file of view method of todo module of ZenTaoPMS.
|
||
*
|
||
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(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 todo
|
||
* @version $Id: view.html.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $
|
||
* @link http://www.zentao.net
|
||
*/
|
||
?>
|
||
<?php include '../../common/view/header.html.php';?>
|
||
<?php if(!$todo->private or ($todo->private and $todo->account == $app->user->account)):?>
|
||
<div class='container mw-700px'>
|
||
<div id='titlebar'>
|
||
<div class='heading'>
|
||
<span class='prefix' title='TODO'><?php echo html::icon($lang->icons['todo']);?> <strong><?php echo $todo->id;?></strong></span>
|
||
<strong><?php echo $todo->name;?></strong>
|
||
</div>
|
||
</div>
|
||
<div class='row-table'>
|
||
<div class='col-main'>
|
||
<div class='main'>
|
||
<fieldset>
|
||
<legend>
|
||
<?php
|
||
echo $lang->todo->desc;
|
||
if($todo->type == 'bug') echo html::a($this->createLink('bug', 'view', "id={$todo->idvalue}"), ' BUG#' . $todo->idvalue);
|
||
if($todo->type == 'task') echo html::a($this->createLink('task', 'view', "id={$todo->idvalue}"), ' TASK#' . $todo->idvalue);
|
||
if($todo->type == 'story') echo html::a($this->createLink('story', 'view', "id={$todo->idvalue}"), ' STORY#' . $todo->idvalue);
|
||
?>
|
||
</legend>
|
||
<div><?php echo $todo->desc;?></div>
|
||
</fieldset>
|
||
<?php $actionTheme = 'fieldset'; include '../../common/view/action.html.php';?>
|
||
</div>
|
||
</div>
|
||
<div class='col-side'>
|
||
<div class='main main-side'>
|
||
<fieldset>
|
||
<legend><?php echo $lang->todo->legendBasic;?></legend>
|
||
<table class='table table-data table-condensed table-borderless'>
|
||
<tr>
|
||
<th><?php echo $lang->todo->pri;?></th>
|
||
<td><?php echo $lang->todo->priList[$todo->pri];?></td>
|
||
</tr>
|
||
<tr>
|
||
<th><?php echo $lang->todo->status;?></th>
|
||
<td class='todo-<?php echo $todo->status?>'><?php echo $lang->todo->statusList[$todo->status];?></td>
|
||
</tr>
|
||
<tr>
|
||
<th><?php echo $lang->todo->type;?></th>
|
||
<td><?php echo $lang->todo->typeList[$todo->type];?></td>
|
||
</tr>
|
||
<tr>
|
||
<th class='w-80px'><?php echo $lang->todo->account;?></th>
|
||
<td><?php echo $todo->account;?></td>
|
||
</tr>
|
||
<tr>
|
||
<th class='w-80px'><?php echo $lang->todo->date;?></th>
|
||
<td><?php echo $todo->date == '20300101' ? $lang->todo->periods['future'] : date(DT_DATE1, strtotime($todo->date));?></td>
|
||
</tr>
|
||
<tr>
|
||
<th><?php echo $lang->todo->beginAndEnd;?></th>
|
||
<td><?php if(isset($times[$todo->begin])) echo $times[$todo->begin]; if(isset($times[$todo->end])) echo ' ~ ' . $times[$todo->end];?></td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class='panel-footer text-center'>
|
||
<?php
|
||
if($this->session->todoList)
|
||
{
|
||
$browseLink = $this->session->todoList;
|
||
}
|
||
elseif($todo->account == $app->user->account)
|
||
{
|
||
$browseLink = $this->createLink('my', 'todo');
|
||
}
|
||
else
|
||
{
|
||
$browseLink = $this->createLink('user', 'todo', "account=$todo->account");
|
||
}
|
||
|
||
if($todo->status != 'done')
|
||
{
|
||
echo "<div class='btn-group dropup'>";
|
||
echo html::a($this->createLink('todo', 'finish', "id=$todo->id", 'html', true), "<i class='icon icon-ok'></i> " . $lang->todo->finish, 'hiddenwin', "class='btn showinonlybody btn-success'");
|
||
$createStoryPriv = common::hasPriv('story', 'create');
|
||
$createTaskPriv = common::hasPriv('task', 'create');
|
||
$createBugPriv = common::hasPriv('bug', 'create');
|
||
if($createStoryPriv or $createTaskPriv or $createBugPriv)
|
||
{
|
||
$isonlybody = isonlybody();
|
||
unset($_GET['onlybody']);
|
||
echo "<button type='button' class='btn btn-success dropdown-toggle' data-toggle='dropdown'><span class='caret'></span></button>";
|
||
echo "<ul class='dropdown-menu pull-right' role='menu'>";
|
||
if($createStoryPriv) echo '<li>' . html::a($this->createLink('story', 'create', "productID=0&branch=0&moduleID=0&storyID=0&projectID=0&bugID=0&planID=0&todoID={$todo->id}"), $lang->todo->reasonList['story'], '_parent') . '</li>';
|
||
if($createTaskPriv) echo '<li>' . html::a('###', $lang->todo->reasonList['task'], '', "data-toggle='modal' data-target='#projectModal' data-moveable='true' data-position='193px'") . '</li>';
|
||
if($createBugPriv) echo '<li>' . html::a($this->createLink('bug', 'create', "productID=0&branch=0&extras=todoID={$todo->id}"), $lang->todo->reasonList['bug'], '_parent') . '</li>';
|
||
echo "</ul>";
|
||
if($isonlybody) $_GET['onlybody'] = 'yes';
|
||
}
|
||
echo "</div>";
|
||
}
|
||
|
||
if($todo->account == $app->user->account)
|
||
{
|
||
common::printIcon('todo', 'edit', "todoID=$todo->id");
|
||
common::printIcon('todo', 'delete', "todoID=$todo->id", '', 'button', '', 'hiddenwin');
|
||
}
|
||
common::printRPN($browseLink);
|
||
?>
|
||
</div>
|
||
</div>
|
||
<div class="modal fade" id="projectModal">
|
||
<div class="modal-dialog">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||
<h4 class="modal-title"><i class="icon-file-text"></i> <?php echo $lang->project->selectProject;?></h4>
|
||
</div>
|
||
<div class="modal-body">
|
||
<div class='input-group'>
|
||
<?php echo html::select('project', $projects, '', "class='form-control chosen'");?>
|
||
<span class='input-group-btn'><?php echo html::commonButton($lang->todo->toTask, "id='toTaskButton'");?></span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<?php js::set('todoID', $todo->id);?>
|
||
<?php else:?>
|
||
<?php echo $lang->todo->thisIsPrivate;?>
|
||
<?php endif;?>
|
||
<?php include '../../common/view/footer.html.php';?>
|