Excluded Users is a helper module which allows administrators to select users not to appear in user listings by modules that know how to work with excluded_users. This should only be installed if you're using a module which knows how to work with it (at this time, organizational infrastructure, minutes, and site user list).

Developers, you can make use of this module like this:

<?php
$uids_to_exclude
= array(0); //usually, you want to exclude the anonymous user
if (module_exist('excluded_users')) {
 
$uids_to_exclude = excluded_users_get_excluded_uids();
}
// ...
$users_query = db_query("SELECT uid FROM {users}
                         WHERE uid not in ("
. implode(",", $uids_to_exclude) . ")");
?>

Downloads

Recommended releases

Version Downloads Date Links
6.x-1.0 tar.gz (7.67 KB) | zip (8.73 KB) 2008-Dec-09 Notes

Development releases

Version Downloads Date Links
5.x-1.x-dev tar.gz (7.59 KB) | zip (8.53 KB) 2011-Feb-25 Notes

Project Information

  • Module categories: User Management
  • Maintenance status: Unknown
  • Development status: Unknown
  • Reported installs: 9 sites currently report using this module. View usage statistics.
  • Last modified: December 9, 2008

Maintainers for Excluded Users

  • pukku - 14 commits
    last: 3 years ago, first: 5 years ago

Issues for Excluded Users

To avoid duplicates, please search before submitting a new issue.
All issues
Bug reports
nobody click here