Skip to content

Commit

Permalink
Some clean up and documentation for userpix, as well as a default res…
Browse files Browse the repository at this point in the history
…triction

for admins only.
  • Loading branch information
moodler committed Aug 26, 2003
1 parent 785e29e commit dbaf630
Showing 1 changed file with 35 additions and 21 deletions.
56 changes: 35 additions & 21 deletions userpix/index.php
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
<?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();
<?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
if (!isadmin()) {
error("Currently only the administrator can access this page!");
}


if (!$users = get_records("user", "picture", "1", "lastaccess DESC", "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();

?>

0 comments on commit dbaf630

Please sign in to comment.