blob: 55c5dc697f66fd0a9af5682cddbbe1b7b246b3fa (
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
39
40
41
|
<?php
/**
* Elgg file download.
*
* @package ElggFile
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
// 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->originalfilename;
// fix for IE https issue
header("Pragma: public");
header("Content-type: $mime");
if (strpos($mime, "image/")!==false)
header("Content-Disposition: inline; filename=\"$filename\"");
else
header("Content-Disposition: attachment; filename=\"$filename\"");
$contents = $file->grabFile();
$splitString = str_split($contents, 8192);
foreach($splitString as $chunk)
echo $chunk;
exit;
} else {
register_error(elgg_echo("file:downloadfailed"));
forward();
}
|