The Latest Members module creates a block that you can use to show the latest members pictures (user pictures) on your site. You can also configure the block to show the number of pictures that you prefer. The default number of new user pictures is 6.

The Latest Members module does something similar to the Avatar Gallery module but with a different approach: it doesn't make use of an image map, simply a themeable set of user pictures.

Once you enable the Latest Members module, you can go to "administer » site building » blocks » latest members" where you can configure the number of latest users to show in the block.

The module output can be customized by overriding the theme_latest_members() function.

<?php
/**
* @param $accounts
* array of user pictures
*/
function theme_latest_members($accounts) {
 
$output = '<div class="latest-members">' . implode(' ', $accounts) . '</div>';
  return
$output;
}
?>

Initial development was done by dangibas and completely rewritten by toemaz according to the Drupal coding standards.

Module Available For Drupal 6.x

There is now a stable version for Drupal 6.x.

Drupal 7 Version

Planned pending demand as something similar can now be achieved with Views Module for example the members directory and blocks used here Hydrops Support Group.

Downloads

Version Downloads Date Links
6.x-2.0 tar.gz (7.49 KB) | zip (8.78 KB) 2011-Feb-09 Notes
5.x-1.1 tar.gz (7.49 KB) | zip (8.71 KB) 2008-May-14 Notes

Project Information


Maintainers for Latest Members

  • dangibas - 4 commits
    last: 1 year ago, first: 1 year ago
  • toemaz - 4 commits
    last: 2 years ago, first: 3 years ago

Issues for Latest Members

To avoid duplicates, please search before submitting a new issue.
All issues
Bug reports
Oldest open issue: 30 May 11
nobody click here