126 lines
3.8 KiB
PHP
126 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* The profile view file of user 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 user
|
|
* @version $Id: profile.html.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/tablesorter.html.php';?>
|
|
<?php include './featurebar.html.php';?>
|
|
<div id='mainContent' class='main-content mw-600px'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<span class='prefix' title='USER'><?php echo html::icon($lang->icons['user']);?></span>
|
|
<strong><?php echo $user->realname;?> (<small><?php echo $user->account;?></small>)</strong>
|
|
<?php echo $lang->user->profile;?> <?php echo html::icon('eye-open');?>
|
|
</h2>
|
|
<div class='actions'>
|
|
<?php echo html::a($this->createLink('user', 'edit', "userID=$user->id"), html::icon('pencil') . ' ' . $lang->user->editProfile, '', "class='btn btn-primary'"); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<table class='table table-borderless table-data'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->user->dept;?></th>
|
|
<td>
|
|
<?php
|
|
if(empty($deptPath))
|
|
{
|
|
echo "/";
|
|
}
|
|
else
|
|
{
|
|
foreach($deptPath as $key => $dept)
|
|
{
|
|
if($dept->name) echo $dept->name;
|
|
if(isset($deptPath[$key + 1])) echo $lang->arrow;
|
|
}
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->account;?></th>
|
|
<td><?php echo $user->account;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->realname;?></th>
|
|
<td><?php echo $user->realname;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->group->priv;?></th>
|
|
<td><?php foreach($groups as $group) echo $group->name . ' '; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->role;?></th>
|
|
<td><?php echo $lang->user->roleList[$user->role];?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->join;?></th>
|
|
<td><?php echo formatTime($user->join);?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->commiter;?></th>
|
|
<td><?php echo $user->commiter;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->email;?></th>
|
|
<td><?php echo $user->email;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->visits;?></th>
|
|
<td><?php echo $user->visits;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->ip;?></th>
|
|
<td><?php echo $user->ip;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->last;?></th>
|
|
<td><?php echo $user->last;?></td>
|
|
</tr>
|
|
<?php foreach(explode(',', $config->user->contactField) as $field):?>
|
|
<tr>
|
|
<th><?php echo $lang->user->$field;?></th>
|
|
<td>
|
|
<?php
|
|
if($field == 'skype' and $user->$field)
|
|
{
|
|
echo html::a("callto://$user->skype", $user->skype);
|
|
}
|
|
elseif($field == 'qq' and $user->$field)
|
|
{
|
|
echo html::a("tencent://message/?uin=$user->qq", $user->qq);
|
|
}
|
|
else
|
|
{
|
|
echo $user->$field;
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<tr>
|
|
<th><?php echo $lang->user->address;?></th>
|
|
<td><?php echo $user->address;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->zipcode;?></th>
|
|
<td><?php echo $user->zipcode;?></td>
|
|
</tr>
|
|
<?php if($user->ranzhi):?>
|
|
<tr>
|
|
<th><?php echo $lang->user->ranzhi;?></th>
|
|
<td><?php echo $user->ranzhi;?></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
</table>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|