MDL-10724 Added the help buttons to the item edit form
[moodle-pu.git] / userpix / index.php
blob865c162447a98d18fc82db58ada4c88d0c6b5cfa
1 <?php // $Id$
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 include('../config.php');
11 require_login();
13 /// Remove the following three lines if you want everyone to access it
14 require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
16 if (!$users = get_records("user", "picture", "1", "lastaccess DESC", "id,firstname,lastname")) {
17 error("no users!");
20 $title = get_string("users");
22 print_header($title, $title, $title);
24 foreach ($users as $user) {
25 $fullname = fullname($user);
26 echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&amp;course=1\"".
27 "title=\"$fullname\">";
28 if ($CFG->slasharguments) { // Use this method if possible for better caching
29 echo '<img src="'. $CFG->wwwroot .'/user/pix.php/'.$user->id.'/f1.jpg"'.
30 ' style="border:0px; width:100px; height:100px" alt="'.$fullname.'" />';
31 } else {
32 echo '<img src="'. $CFG->wwwroot .'/user/pix.php?file=/'. $user->id .'/f1.jpg"'.
33 ' style="border:0px; width:100px; height:100px" alt="'.$fullname.'" />';
35 echo "</a> \n";
38 print_footer();