blob: 19ef86d908db14bca05edfcb3db7424ca3fee02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
/**
* Elgg file browser download action.
*
* @package ElggFile
* @author Marcus Povey
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
// Get the guid
$file_guid = get_input("file_guid");
// Get the file
$file = get_entity($file_guid);
if ($file)
{
$mime = $file->getMimeType();
if (!$mime) $mime = "application/octet-stream";
$filename = $file->getFilename();
header("Content-type: $mime");
header("Content-Disposition: attachment; filename=\"$filename\"");
$file->open("read");
while (!$file->eof())
{
echo $file->read(10240, $file->tell());
}
$file->close();
}
else
system_message(elgg_echo("file:downloadfailed"));
?>
|