67 lines
3.8 KiB
PHP
67 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* The browse view file of product dept of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package product
|
|
* @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php
|
|
include '../../common/view/header.html.php';
|
|
?>
|
|
<div id="mainMenu" class="clearfix">
|
|
<div class="btn-toolbar pull-right">
|
|
<?php common::printLink('user', 'create', "dept=$deptID", "<i class='icon icon-plus'></i> " . $lang->user->create, '', "class='btn btn-primary create-user-btn' data-app='admin'");?>
|
|
</div>
|
|
</div>
|
|
<div id='mainContent' class='main-row fade'>
|
|
<div class='main-col'>
|
|
<div class="cell" id="queryBox" data-module='user'></div>
|
|
<form class='main-table table-user' data-ride='table' method='post' data-checkable='false' id='userListForm'>
|
|
<table class='table has-sort-head' id='userList'>
|
|
<thead>
|
|
<tr>
|
|
<?php $vars = "orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}";?>
|
|
<th class='c-id'><?php common::printOrderLink('id', $orderBy, $vars, $lang->idAB);?></th>
|
|
<th class='c-name'><?php common::printOrderlink('realname', $orderBy, $vars, $lang->user->realname);?></th>
|
|
<th class='c-user'><?php common::printOrderLink('account', $orderBy, $vars, $lang->user->account);?></th>
|
|
<th class="c-role"><?php common::printOrderLink('role', $orderBy, $vars, $lang->user->role);?></th>
|
|
<th class="c-email"><?php common::printOrderLink('email', $orderBy, $vars, $lang->user->email);?></th>
|
|
<th class="c-gender"><?php common::printOrderLink('gender', $orderBy, $vars, $lang->user->gender);?></th>
|
|
<th class='c-phone'><?php common::printOrderLink('phone', $orderBy, $vars, $lang->user->phone);?></th>
|
|
<th class='c-skype'><?php !empty($this->config->isINT) ? common::printOrderLink('skype', $orderBy, $vars, $lang->user->skype) : common::printOrderLink('qq', $orderBy, $vars, $lang->user->qq);?></th>
|
|
<th class="c-date"><?php common::printOrderLink('last', $orderBy, $vars, $lang->user->last);?></th>
|
|
<th class="c-visits"><?php common::printOrderLink('visits', $orderBy, $vars, $lang->user->visits);?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($users as $user):?>
|
|
<tr>
|
|
<td class='c-id'><?php printf('%03d', $user->id);?></td>
|
|
<td><?php if(!common::printLink('user', 'view', "userID=$user->id&from=my", $user->realname, '', "title='$user->realname' data-group='my'")) echo $user->realname;?></td>
|
|
<td><?php echo $user->account;?></td>
|
|
<td title='<?php echo zget($lang->user->roleList, $user->role, '');?>'><?php echo zget($lang->user->roleList, $user->role, '');?></td>
|
|
<td class="c-url" title="<?php echo $user->email;?>"><?php echo html::mailto($user->email);?></td>
|
|
<td class="c-type"><?php echo zget($lang->user->genderList, $user->gender, $user->gender);?></td>
|
|
<td><?php echo $user->phone;?></td>
|
|
<td><?php echo !empty($this->config->isINT) ? $user->skype : ($user->qq ? html::a("tencent://message/?uin=$user->qq#open=my", $user->qq) : '');?></td>
|
|
<td class='c-date'><?php if($user->last) echo date('Y-m-d', $user->last);?></td>
|
|
<td class='c-num text-center'><?php echo $user->visits;?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php if($users):?>
|
|
<div class='table-footer'>
|
|
<?php $pager->show('right', 'pagerjs');?>
|
|
</div>
|
|
<?php endif;?>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|