* finish task#1323.

This commit is contained in:
chencongzhi520@gmail.com
2013-04-11 07:15:43 +00:00
parent 1a0473ef84
commit f5867097f4
3 changed files with 28 additions and 2 deletions
+11
View File
@@ -27,6 +27,17 @@
<th class='rowhead'><?php echo $lang->user->realname;?></th>
<td><?php echo html::input('realname', $user->realname, "class='text-3'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->user->group;?></th>
<td>
<?php
foreach($groups as $groupID => $groupName)
{
echo html::checkbox('groups', array($groupID => $groupName), in_array($groupID, $user->group) ? $groupID : '');
}
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->user->role;?></th>
<td><?php echo html::select('role', $lang->user->roleList, $user->role, "class='select-3'");?></td>