moodle/user/pix.php

30 lines
933 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
define('NO_MOODLE_COOKIES', true); // session not used here
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
// disable moodle specific debug messages
disable_debugging();
$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 = make_user_directory($userid, true) . "/$image";
if (file_exists($pathname) and !is_dir($pathname)) {
send_file($pathname, $image);
}
2001-11-22 06:23:56 +00:00
}
// picture was deleted - use default instead
redirect($CFG->pixpath.'/u/f1.png');
2001-11-22 06:23:56 +00:00
?>