36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* The mail file of task 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 Yangyang Shi<shiyangyang@cnezsoft.com>
|
|
* @package task
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php
|
|
$onlybody = isonlybody() ? true : false;
|
|
if($onlybody) $_GET['onlybody'] = 'no';
|
|
?>
|
|
<table width='98%' align='center'>
|
|
<tr class='header'>
|
|
<td>
|
|
TASK #<?php echo $task->id . "=>$task->assignedTo " . html::a(common::getSysURL() . $this->createLink('task', 'view', "taskID=$task->id"), $task->name);?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<fieldset>
|
|
<legend><?php echo $lang->task->legendDesc;?></legend>
|
|
<div class='content'><?php echo $task->desc;?></div>
|
|
</fieldset>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><?php include '../../common/view/mail.html.php';?></td>
|
|
</tr>
|
|
</table>
|
|
<?php if($onlybody) $_GET['onlybody'] = 'yes';?>
|