mirror of
https://github.com/moodle/moodle.git
synced 2025-04-20 07:56:06 +02:00
Displays all user pictures on one page.
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.
This commit is contained in:
parent
ceca2ad2b0
commit
05f53652f3
23
userpix/index.php
Normal file
23
userpix/index.php
Normal file
@ -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();
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user