It would be nice if the members.module supported multiple pages. As the members list grows, it becomes very unwieldy to have all members listed on the same page (currently we have 151 members, and growing by 1 to 3 a week on average).
It would be nice at least if there was simple usage of the pagination feature so only "N" (settable in the Admin modules) number of members are shown at a time. Better yet, a simple "A | B | C | D ..." link system at the top that would allow a member to click on an alphabet letter that would only pull those usernames starting with that letter. I guess this could be two feature requests...
v/r
Shane
Comments
Comment #1
killes@www.drop.org commentedThis was added to the cvs version.
Comment #2
(not verified) commentedComment #3
ighost commentedThis feature seems to be missing from the 4.5.0 version.
// $Id: members.module,v 1.36 2004/11/24 22:03:32 dries Exp $
Is there a setting im over looking?
Thanks.
Comment #4
debwire commentedI, too, would like to see this option with the ability to set how many members should be listed on each page. It doesn't seem to be fixed in the latest version or the cvs version.
Comment #5
michalska commentedI don't know how to use patch yet, so I will list the lines needed to be changed/inserted:
+15 in function members_settings()
$output .= form_textfield(t("Members on page"), "members_number", 25, 5, 5);
//set the default number of members to be listed on each page to 25
+40 in function members_page($rids = null) {
$listlength = variable_get("members_number", 25);
//in function members_perm() {
-84
+84 $result = pager_query($query, $listlength);
-127
+127 if ($pager = theme("pager", NULL, $listlength, 0, tablesort_pager())) {
Comment #6
wmostrey commentedComment #7
killes@www.drop.org commented