excluding users from the members list
Permalink$userList->filterByExcludeFromDirectory(1, '!=');
Oddly, that would only filter out the super user, and no others...
So I came up with this kind of janky way: creating a user group to exclude from the main list:
// there's got to be a better way to exclude people $g = Group::getByName('Exclude from Member Directory'); $hideThese = $g->getGroupMembers(); $uIDs = array(); foreach ($hideThese as $u) { $uIDs[] = $u->getUserID(); } $userList->excludeUsers($uIDs);
Ideally I'd like to use the checkbox method, rather than the group method.
Maybe more so... I don't know why the checkbox method isn't working, and that really chaps my hide.
Can anyone enlighten me?

I'm 99% sure I'm using the filterByAttribute method correctly (or, in this case, the "magic method"), but I think there is some oddness with the checkbox/boolean attribute type. If I'm wrong it wouldn't be the first time, though!
As in the thread you referenced, there is a way to filter a user list to just those IN a particular group, but apparently not a way to show those NOT in a particular group. Digging in the code I see a way to show users who are not in NO groups, but that won't work for me, either :-(
Using the following function should help you:
$ul->filterByAttribute($attributeKeyHandle, $value, $comparison = '=')
You can also expand the library use by using:http://www.concrete5.org/documentation/developers/system/searching-...
So maybe something like:
Loader::model('user_list'); $userList = new UserList(); $userlist->filterByAttribute('ExcludeFromDirectory', 0, $comparison = '=');
I've tried the code similar to what you suggest and unfortunately it doesn't work for me. Tried comparing to 0, 1, true, false, 'true', 'false', 'yes', 'no' ... even though in the database it's clearly stored as 1, you never know! Tried =, !=, >, < ... all kinds of things. It either filters none, all (empty list), or just the superuser. The superuser ID is 1... I wonder if that has something to do with it.
At this point I need someone to say "I've done something like this, and it works, there must be something wrong with your code". I feel like I've done due diligence on research and testing and am starting to wonder if this might be a bug... not likely, I know, so I'm ready to be wrong :-)
Here are the steps:
- set up a user attribute (checkbox type): handle is 'exclude_from_directory'
- within a user, check the box (make sure to do this on at least two users, so you get one that isn't the superuser)
- copy /concrete/controllers/members.php to /controllers/members.php
- around line 13 or so (after the sortBy method call) add either
$userList->filterByExcludeFromDirectory(1, '!='); // OR (not both... these are just some of the many permutations I tried) $userList->filterByAttribute('exclude_from_directory', 0);
- look at the Members page to see if the filtering is working as expected.
Seems that the test needs to be for NOT 1, as the value may be nothing (not 0) if the attribute is never set up for that particular user but maybe that would equate to zero anyway. Not sure, so I tested LOTS of variations :-)
Thanks so much! I hope that's enough info. Let me know if it works for you!
I tried what you suggested, and I think the problem is that you're editing the wrong file. I think the one you want is...
/concrete/controllers/dashboard/users/search.php
I haven't actually tried it yet, but I think that's the ticket.
EDIT: Ok, just tried it. I think you want to edit the getRequestedSearchResults() method in the aforementioned file.
-Steve
I'm referring to the Members page on the public-facing site, not the Users page in the Dashboard.
:-/
-Steve
I have tested it on one of my installations and the following works:
<?php defined('C5_EXECUTE') or die("Access Denied."); Loader::model('user_list'); class MembersController extends Controller { public function view() { $userList = new UserList(); $userList->sortBy('uName', 'asc'); $userList->filterByAttribute('exclude_from_directory', 0, '='); $keywords = $this->get('keywords'); if ($keywords != '') { $userList->filterByKeywords($keywords); } $users = $userList->getPage(); $this->set('userList', $userList); $this->set('users', $users);
The above code is the entire members.php that is in the SITEROOT/controllers/ directory.
Do you want to give it a try and see if it works for you?
Kind regards, Steve R
I've not actually tried to do what you want to do, but I'm curious as to why you want to avoid groups.
Interestingly, I just submitted a user list add-on to the marketplace. While it allows for group unions and intersections, it does not currently allow you to filter users that are NOT in one or more groups. However, your problem has given me an idea for a feature enhancement.
If I learn anything that might help, I'll post back.
-Steve
Since I've found a way to get what I need by using a group and a-bit-more-code-than-seems-necessary, it's academic to find out why filtering on a checkbox attribute doesn't seem to work.
Gothca. Personally, I think the UI for adding and removing users to/from groups could be improved dramatically. It's too cumbersome as is. If the process was simpler and more intuitive, it would make working with groups much more pleasant.
:-/
-Steve
Steve R.
Thanks again for your help.
Scratch that, it does now! Thanks to Kirk's inquiry, I've added new functionality to my user list add-on (which is currently pending approval).
Anyway, just wanted to set the record straight in case someone stumbles upon this thread down the road.
See attached image for a snippet of the UI.
-Steve
Anyway, thanks.
-Steve
http://www.concrete5.org/marketplace/addons/enhanced-user-list/...
-Steve