* improve css * fix table * fix write page * improve header nav * fix menu * fix menu * fix menu * add flex grid system * fix * fix flex * fix draft version * using main html element to replace div * improve css * add input type number * fix custom-fields * fix screen
134 lines
7.4 KiB
PHP
134 lines
7.4 KiB
PHP
<?php
|
|
include 'common.php';
|
|
include 'header.php';
|
|
include 'menu.php';
|
|
|
|
$users = \Widget\Users\Admin::alloc();
|
|
?>
|
|
<main class="main">
|
|
<div class="body container">
|
|
<?php include 'page-title.php'; ?>
|
|
<div class="row typecho-page-main" role="main">
|
|
<div class="col-mb-12 typecho-list">
|
|
<form method="get" class="typecho-list-operate">
|
|
<div class="operate">
|
|
<label><i class="sr-only"><?php _e('全选'); ?></i><input type="checkbox"
|
|
class="typecho-table-select-all"/></label>
|
|
<div class="btn-group btn-drop">
|
|
<button class="btn dropdown-toggle btn-s" type="button"><i
|
|
class="sr-only"><?php _e('操作'); ?></i><?php _e('选中项'); ?> <i
|
|
class="i-caret-down"></i></button>
|
|
<ul class="dropdown-menu">
|
|
<li><a lang="<?php _e('你确认要删除这些用户吗?'); ?>"
|
|
href="<?php $security->index('/action/users-edit?do=delete'); ?>"><?php _e('删除'); ?></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="search" role="search">
|
|
<?php if ('' != $request->keywords): ?>
|
|
<a href="<?php $options->adminUrl('manage-users.php'); ?>"><?php _e('« 取消筛选'); ?></a>
|
|
<?php endif; ?>
|
|
<input type="text" class="text-s" placeholder="<?php _e('请输入关键字'); ?>"
|
|
value="<?php echo $request->filter('html')->keywords; ?>" name="keywords"/>
|
|
<button type="submit" class="btn btn-s"><?php _e('筛选'); ?></button>
|
|
</div>
|
|
</form>
|
|
|
|
<form method="post" name="manage_users" class="operate-form">
|
|
<table class="typecho-list-table">
|
|
<colgroup>
|
|
<col width="3%" class="kit-hidden-mb"/>
|
|
<col width="6%" class="kit-hidden-mb"/>
|
|
<col width="30%"/>
|
|
<col width="" class="kit-hidden-mb"/>
|
|
<col width="25%" class="kit-hidden-mb"/>
|
|
<col width="15%"/>
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th class="kit-hidden-mb"></th>
|
|
<th class="kit-hidden-mb"></th>
|
|
<th><?php _e('用户名'); ?></th>
|
|
<th class="kit-hidden-mb"><?php _e('昵称'); ?></th>
|
|
<th class="kit-hidden-mb"><?php _e('电子邮件'); ?></th>
|
|
<th><?php _e('用户组'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php while ($users->next()): ?>
|
|
<tr id="user-<?php $users->uid(); ?>">
|
|
<td class="kit-hidden-mb"><input type="checkbox" value="<?php $users->uid(); ?>"
|
|
name="uid[]"/></td>
|
|
<td class="kit-hidden-mb"><a
|
|
href="<?php $options->adminUrl('manage-posts.php?__typecho_all_posts=off&uid=' . $users->uid); ?>"
|
|
class="balloon-button left size-<?php echo \Typecho\Common::splitByCount($users->postsNum, 1, 10, 20, 50, 100); ?>"><?php $users->postsNum(); ?></a>
|
|
</td>
|
|
<td>
|
|
<a href="<?php $options->adminUrl('user.php?uid=' . $users->uid); ?>"><?php $users->name(); ?></a>
|
|
<a href="<?php $users->permalink(); ?>"
|
|
title="<?php _e('浏览 %s', $users->screenName); ?>"><i
|
|
class="i-exlink"></i></a>
|
|
</td>
|
|
<td class="kit-hidden-mb"><?php $users->screenName(); ?></td>
|
|
<td class="kit-hidden-mb"><?php if ($users->mail): ?><a
|
|
href="mailto:<?php $users->mail(); ?>"><?php $users->mail(); ?></a><?php else: _e('暂无'); endif; ?>
|
|
</td>
|
|
<td><?php switch ($users->group) {
|
|
case 'administrator':
|
|
_e('管理员');
|
|
break;
|
|
case 'editor':
|
|
_e('编辑');
|
|
break;
|
|
case 'contributor':
|
|
_e('贡献者');
|
|
break;
|
|
case 'subscriber':
|
|
_e('关注者');
|
|
break;
|
|
case 'visitor':
|
|
_e('访问者');
|
|
break;
|
|
default:
|
|
break;
|
|
} ?></td>
|
|
</tr>
|
|
<?php endwhile; ?>
|
|
</tbody>
|
|
</table><!-- end .typecho-list-table -->
|
|
</form><!-- end .operate-form -->
|
|
|
|
<form method="get" class="typecho-list-operate">
|
|
<div class="operate">
|
|
<label><i class="sr-only"><?php _e('全选'); ?></i><input type="checkbox"
|
|
class="typecho-table-select-all"/></label>
|
|
<div class="btn-group btn-drop">
|
|
<button class="btn dropdown-toggle btn-s" type="button"><i
|
|
class="sr-only"><?php _e('操作'); ?></i><?php _e('选中项'); ?> <i
|
|
class="i-caret-down"></i></button>
|
|
<ul class="dropdown-menu">
|
|
<li><a lang="<?php _e('你确认要删除这些用户吗?'); ?>"
|
|
href="<?php $security->index('/action/users-edit?do=delete'); ?>"><?php _e('删除'); ?></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php if ($users->have()): ?>
|
|
<ul class="typecho-pager">
|
|
<?php $users->pageNav(); ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</form>
|
|
</div><!-- end .typecho-list -->
|
|
</div><!-- end .typecho-page-main -->
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
include 'copyright.php';
|
|
include 'common-js.php';
|
|
include 'table-js.php';
|
|
include 'footer.php';
|
|
?>
|