Interactive enrolment/unenrolments: make sure we unset mycourses
[moodle-pu.git] / userpix / upgrade.php
blob161499d8452febd306da0a65e80d905261af2fa3
1 <?php // $Id$
2 // This script updates all users picturesi to remove black border.
5 include('../config.php');
6 include('../lib/gdlib.php');
8 require_login();
10 require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
12 if (!$users = get_records("user", "picture", "1", "lastaccess DESC", "id,firstname,lastname")) {
13 error("no users!");
16 $title = get_string("users");
18 print_header($title, $title, build_navigation(array(array('name' => $title, 'link' => null, 'type' => 'misc'))));
20 foreach ($users as $user) {
21 upgrade_profile_image($user->id);
22 $fullname = fullname($user);
23 echo "<a href=\"$CFG->wwwroot/user/view.php?id=$user->id&amp;course=1\"".
24 "title=\"$fullname\">";
25 if ($CFG->slasharguments) { // Use this method if possible for better caching
26 echo '<img src="'. $CFG->wwwroot .'/user/pix.php/'.$user->id.'/f1.jpg"'.
27 ' style="border:0px; width:100px; height:100px" alt="'.$fullname.'" />';
28 } else {
29 echo '<img src="'. $CFG->wwwroot .'/user/pix.php?file=/'. $user->id .'/f1.jpg"'.
30 ' style="border:0px; width:100px; height:100px" alt="'.$fullname.'" />';
32 echo "</a> \n";
35 print_footer();