Skip to content

Commit

Permalink
Displays all user pictures on one page.
Browse files Browse the repository at this point in the history
This has been on moodle.org for ages, but it might as well be in the
distribution too.   It's not linked from anywhere in Moodle currently.
  • Loading branch information
moodler committed Aug 9, 2003
1 parent ceca2ad commit 05f5365
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions userpix/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?PHP

include('../config.php');

require_login();

if (!$users = get_records("user", "picture", "1", "id", "id,firstname,lastname")) {
error("no users!");
}

$title = get_string("users");

print_header($title, $title, $title);

foreach ($users as $user) {
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&course=1\" title=\"$user->firstname $user->lastname\">";
echo "<img border=0 src=\"$CFG->wwwroot/user/pix.php/$user->id/f1.jpg\" width=100 height=100 alt=\"$user->firstname $user->lastname\" />";
echo "</a> \n";
}

print_footer();

?>

0 comments on commit 05f5365

Please sign in to comment.