moodle/user/pix.php

31 lines
978 B
PHP
Raw Normal View History

2001-11-22 06:23:56 +00:00
<?PHP // $Id$
// This function fetches user pictures from the data directory
// Syntax: pix.php/userid/f1.jpg or pix.php/userid/f2.jpg
// OR: ?file=userid/f1.jpg or ?file=userid/f2.jpg
2001-11-22 06:23:56 +00:00
$nomoodlecookie = true; // Because it interferes with caching
require_once('../config.php');
2005-03-07 12:10:22 +00:00
require_once($CFG->libdir.'/filelib.php');
2001-11-22 06:23:56 +00:00
$relativepath = get_file_argument('pix.php');
2001-11-22 06:23:56 +00:00
$args = explode('/', trim($relativepath, '/'));
if (count($args) == 2) {
$userid = (integer)$args[0];
$image = $args[1];
$pathname = $CFG->dataroot.'/users/'.$userid.'/'.$image;
} else {
$image = 'f1.png';
$pathname = $CFG->dirroot.'/pix/u/f1.png';
2001-11-22 06:23:56 +00:00
}
if (file_exists($pathname) and !is_dir($pathname)) {
send_file($pathname, $image);
2001-11-22 06:23:56 +00:00
} else {
header('HTTP/1.0 404 not found');
error(get_string('filenotfound', 'error')); //this is not displayed on IIS??
2001-11-22 06:23:56 +00:00
}
?>