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
|
|
|
|
2008-06-25 17:31:23 +00:00
|
|
|
define('NO_MOODLE_COOKIES', true); // session not used here
|
2003-08-12 07:02:34 +00:00
|
|
|
|
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
|
|
|
|
2006-09-23 09:38:39 +00:00
|
|
|
// disable moodle specific debug messages
|
|
|
|
disable_debugging();
|
|
|
|
|
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];
|
2007-10-11 09:01:29 +00:00
|
|
|
$pathname = make_user_directory($userid, true) . "/$image";
|
2007-01-26 20:15:54 +00:00
|
|
|
if (file_exists($pathname) and !is_dir($pathname)) {
|
|
|
|
send_file($pathname, $image);
|
2007-10-11 09:01:29 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2007-01-26 20:15:54 +00:00
|
|
|
// picture was deleted - use default instead
|
|
|
|
redirect($CFG->pixpath.'/u/f1.png');
|
2001-11-22 06:23:56 +00:00
|
|
|
?>
|