forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some clean up and documentation for userpix, as well as a default res…
…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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
|
||
?> |