diff options
| author | 2014-10-16 16:43:37 +0200 | |
|---|---|---|
| committer | 2014-10-17 16:24:21 +0200 | |
| commit | 2796cc9ae559842a90fa15cba65c94a11b29195e (patch) | |
| tree | 0dc742153cba0b4c45c15b255047b71188449f73 /app | |
| parent | c5fe3bd6593d0a07c087d1e60ae2e4b8ab5f9fa9 (diff) | |
User list load a new page
Beginning of more options for administrator!
Diffstat (limited to 'app')
| -rw-r--r-- | app/Controllers/userController.php | 4 | ||||
| -rw-r--r-- | app/views/stats/repartition.phtml | 2 | ||||
| -rw-r--r-- | app/views/user/manage.phtml | 41 |
3 files changed, 25 insertions, 22 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php index c516246c9..00b51cc3d 100644 --- a/app/Controllers/userController.php +++ b/app/Controllers/userController.php @@ -88,6 +88,10 @@ class FreshRSS_user_Controller extends Minz_ActionController { */ public function manageAction() { Minz_View::prependTitle(_t('users.manage') . ' ยท '); + + $this->view->current_user = Minz_Request::param( + 'u', Minz_Session::param('currentUser', '_') + ); } public function createAction() { diff --git a/app/views/stats/repartition.phtml b/app/views/stats/repartition.phtml index 670714707..32268a546 100644 --- a/app/views/stats/repartition.phtml +++ b/app/views/stats/repartition.phtml @@ -5,7 +5,7 @@ <h1><?php echo _t('stats_repartition'); ?></h1> - <select id="feed_select"> + <select id="feed_select" class="select-change"> <option data-url="<?php echo _url('stats', 'repartition')?>"><?php echo _t('all_feeds')?></option> <?php foreach ($this->categories as $category) { $feeds = $category->feeds(); diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index 03746cabb..fb569872b 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -3,27 +3,6 @@ <div class="post"> <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('back_to_rss_feeds'); ?></a> - <form method="post" action="<?php echo _url('user', 'delete'); ?>"> - <legend><?php echo _t('users'); ?></legend> - - <div class="form-group"> - <label class="group-name" for="users_list"><?php echo _t('users_list'); ?></label> - <div class="group-controls"> - <select id="users_list" name="username"><?php - foreach (listUsers() as $user) { - echo '<option>', $user, '</option>'; - } - ?></select> - </div> - </div> - - <div class="form-group form-actions"> - <div class="group-controls"> - <button type="submit" class="btn btn-attention confirm"><?php echo _t('delete'); ?></button> - </div> - </div> - </form> - <form method="post" action="<?php echo _url('user', 'create'); ?>"> <legend><?php echo _t('create_user'); ?></legend> @@ -71,6 +50,26 @@ <button type="reset" class="btn"><?php echo _t('cancel'); ?></button> </div> </div> + </form> + + <form method="post" action="<?php echo _url('user', 'delete'); ?>"> + <legend><?php echo _t('users'); ?></legend> + <div class="form-group"> + <label class="group-name" for="user-list"><?php echo _t('users_list'); ?></label> + <div class="group-controls"> + <select id="user-list" class="select-change" name="username"> + <?php foreach (listUsers() as $username) { ?> + <option data-url="<?php echo _url('user', 'manage', 'u', $username); ?>" <?php echo $this->current_user === $username ? 'selected="selected"' : ''; ?> value="<?php echo $username; ?>"><?php echo $username; ?></option> + <?php } ?> + </select> + </div> + </div> + + <div class="form-group form-actions"> + <div class="group-controls"> + <button type="submit" class="btn btn-attention confirm"><?php echo _t('delete'); ?></button> + </div> + </div> </form> </div> |
