75 lines
2.8 KiB
PHP
75 lines
2.8 KiB
PHP
<?php
|
||
/**
|
||
* The team view file of project 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 project
|
||
* @version $Id: team.html.php 4143 2013-01-18 07:01:06Z wyd621@gmail.com $
|
||
* @link http://www.zentao.net
|
||
*/
|
||
?>
|
||
<?php include '../../common/view/header.html.php';?>
|
||
<?php include '../../common/view/tablesorter.html.php';?>
|
||
<?php js::set('confirmUnlinkMember', $lang->project->confirmUnlinkMember)?>
|
||
<div>
|
||
<div id='titlebar'>
|
||
<div class='heading'>
|
||
<?php echo html::icon($lang->icons['team']);?> <?php echo $lang->project->team;?>
|
||
</div>
|
||
<div class='actions'>
|
||
<?php common::printLink('project', 'managemembers', "projectID=$project->id", $lang->project->manageMembers, '', "class='btn btn-primary'");?>
|
||
</div>
|
||
</div>
|
||
<table class='table tablesorter' id='memberList'>
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo $lang->team->account;?></th>
|
||
<th><?php echo $lang->team->role;?></th>
|
||
<th><?php echo $lang->team->join;?></th>
|
||
<th><?php echo $lang->team->days;?></th>
|
||
<th><?php echo $lang->team->hours;?></th>
|
||
<th><?php echo $lang->team->totalHours;?></th>
|
||
<th><?php echo $lang->actions;?></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php $totalHours = 0;?>
|
||
<?php foreach($teamMembers as $member):?>
|
||
<tr class='text-center'>
|
||
<td>
|
||
<?php
|
||
if(!common::printLink('user', 'view', "account=$member->account", $member->realname)) print $member->realname;
|
||
$memberHours = $member->days * $member->hours;
|
||
$totalHours += $memberHours;
|
||
?>
|
||
</td>
|
||
<td><?php echo $member->role;?></td>
|
||
<td><?php echo substr($member->join, 2);?></td>
|
||
<td><?php echo $member->days;?></td>
|
||
<td><?php echo $member->hours;?></td>
|
||
<td><?php echo $memberHours;?></td>
|
||
<td>
|
||
<?php
|
||
if (common::hasPriv('project', 'unlinkMember'))
|
||
{
|
||
$unlinkURL = $this->createLink('project', 'unlinkMember', "projectID=$project->id&account=$member->account&confirm=yes");
|
||
echo html::a("javascript:ajaxDelete(\"$unlinkURL\",\"memberList\",confirmUnlinkMember)", '<i class="icon-green-project-unlinkMember icon-remove"></i>', '', "class='btn-icon' title='{$lang->project->unlinkMember}'");
|
||
}
|
||
?>
|
||
</td>
|
||
</tr>
|
||
<?php endforeach;?>
|
||
</tbody>
|
||
<tfoot>
|
||
<tr>
|
||
<td colspan='7'>
|
||
<div class='table-actions clearfix'><div class='text'><?php echo $lang->team->totalHours . ':' . "<strong>$totalHours</strong>";?></div></div>
|
||
</td>
|
||
</tr>
|
||
</tfoot>
|
||
</table>
|
||
</div>
|
||
<?php include '../../common/view/footer.html.php';?>
|