Moodle Plugins directory: Browse list of users (classic mode) | Moodle.org
Browse list of users (classic mode)
Administration tools ::: tool_browse_users_classic
Maintained by
Andrei Băutu
This is a simple Moodle plugin that brings back the classic (i.e. before Moodle 4.3) "Browse list of users" page
Latest release:
20 downloads
2 fans
Current versions available: 1
This is a simple Moodle plugin that brings back the classic (i.e. before Moodle 4.3) "Browse list of users" page.
The new UI for browsing users is nice and good for new users, but requires more clicks and scrolls, which could be kind of annoying for advanced users. The new UI also lacks some of the old filters.
There were various discussions where admins disagreed with the new style (e.g. https://moodle.org/mod/forum/discuss.php?d=460704, https://moodle.org/mod/forum/discuss.php?d=461098, https://moodle.org/mod/forum/discuss.php?d=464841).
This plugin solves this problem by providing an alternative browse user page, based on the previous Moodle versions.
Useful links
Contributors
Andrei Băutu (Lead maintainer)
Please login to view contributors details and/or to contact them
Is it possible to make it so that, after you edit a profile and save, it does not default back to the 'new' "Browse list of users" page? It's only a minor issue, since I can just get there fast by hitting back or a bookmark, but it would make the plugin even better
Indeed, I haven't noticed this side effect. Looking at the Moodle code, it seems this is not possible (because the redirection URLs are defined in user/editadvanced.php file) without some workarounds, like (listed in ordered from recommended, to less recommended):
A. add a new text block on the /admin/user.php page; for its content, add window.location='/admin/tool/browse_users_classic/index.php' inside a script element (use the View source option of the editor to make sure you enter it as plain HTML codes, not just text).
B. add an apache redirect from /admin/user.php to /admin/tool/browse_users_classic/index.php
C. patch /user/editadvanced.php to replace /$CFG->admin/user.php with /admin/tool/browse_users_classic/index.php
In addition to these options, in version 2025121200 I added two settings:
- display profile after editing (instead of redirecting back to the new user browse list)
- open profile editing in a different tab (to avoid loosing your current browsing page)
You could enable these two options and change a bit your workflow (i.e. click edit profile, opens new tab, make the changes, submit, close this tab to get back to the previous one, with the list).