mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php // $Id$
|
|
// This simple script displays all the users with pictures on one page.
|
|
// By default it is not linked anywhere on the site. If you want to
|
|
// make it available you should link it in yourself from somewhere.
|
|
// Remember also to comment or delete the lines restricting access
|
|
// to administrators only (see below)
|
|
|
|
|
|
include('../config.php');
|
|
|
|
require_login();
|
|
|
|
/// Remove the following three lines if you want everyone to access it
|
|
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
|
|
|
|
if (!$users = $DB->get_records("user", array("picture"=>"1"), "lastaccess DESC", "id,firstname,lastname")) {
|
|
print_error("nousers");
|
|
}
|
|
|
|
$title = get_string("users");
|
|
|
|
print_header($title, $title, build_navigation(array(array('name' => $title, 'link' => null, 'type' => 'misc'))));
|
|
|
|
foreach ($users as $user) {
|
|
$fullname = fullname($user);
|
|
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&course=1\" ".
|
|
"title=\"$fullname\">";
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
$userpictureurl = get_file_url($user->id.'/f1.jpg', null, 'user');
|
|
echo '<img src="'. $userpictureurl .'"'.
|
|
' style="border:0px; width:100px; height:100px" alt="'.$fullname.'" />';
|
|
echo "</a> \n";
|
|
}
|
|
|
|
print_footer();
|
|
|
|
?>
|