2001-11-22 06:23:56 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
// This function fetches user pictures from the data directory
|
2002-08-09 09:09:36 +00:00
|
|
|
// 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
|
|
|
|
2003-08-12 07:02:34 +00:00
|
|
|
$nomoodlecookie = true; // Because it interferes with caching
|
|
|
|
|
2004-12-14 18:57:51 +00:00
|
|
|
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
|
|
|
|
2004-12-14 18:57:51 +00:00
|
|
|
$relativepath = get_file_argument('pix.php');
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2004-12-14 18:57:51 +00:00
|
|
|
$args = explode('/', trim($relativepath, '/'));
|
2002-08-09 09:09:36 +00:00
|
|
|
|
2004-12-14 18:57:51 +00:00
|
|
|
if (count($args) == 2) {
|
|
|
|
$userid = (integer)$args[0];
|
|
|
|
$image = $args[1];
|
|
|
|
$pathname = $CFG->dataroot.'/users/'.$userid.'/'.$image;
|
2003-01-12 06:53:25 +00:00
|
|
|
} else {
|
2004-12-14 18:57:51 +00:00
|
|
|
$image = 'f1.png';
|
|
|
|
$pathname = $CFG->dirroot.'/pix/u/f1.png';
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2004-12-14 18:57:51 +00:00
|
|
|
if (file_exists($pathname) and !is_dir($pathname)) {
|
|
|
|
send_file($pathname, $image);
|
2001-11-22 06:23:56 +00:00
|
|
|
} else {
|
2004-12-14 18:57:51 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
?>
|