Merge branch 'MDL-80633-main' of https://github.com/laurentdavid/moodle
[moodle.git] / userpix / index.php
blob455e19d9bde7871b92f30ee86af031343df0358f
1 <?php
2 // This simple script displays all the users with pictures on one page.
3 // By default it is not linked anywhere on the site. If you want to
4 // make it available you should link it in yourself from somewhere.
5 // Remember also to comment or delete the lines restricting access
6 // to administrators only (see below)
9 require('../config.php');
11 $PAGE->set_url('/userpix/index.php');
13 require_login();
15 /// Remove the following three lines if you want everyone to access it
16 $syscontext = context_system::instance();
17 require_capability('moodle/site:config', $syscontext);
19 $title = get_string("users");
20 $PAGE->set_context($syscontext);
21 $PAGE->navbar->add($title);
22 $PAGE->set_title($title);
23 $PAGE->set_heading($title);
24 echo $OUTPUT->header();
26 $rs = $DB->get_recordset_select("user", "deleted = 0 AND picture > 0", array(), "lastaccess DESC",
27 implode(',', \core_user\fields::get_picture_fields()));
28 foreach ($rs as $user) {
29 $fullname = s(fullname($user));
30 echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&amp;course=1\" ".
31 "title=\"$fullname\">";
32 echo $OUTPUT->user_picture($user);
33 echo "</a> \n";
35 $rs->close();
37 echo $OUTPUT->footer();