aboutsummaryrefslogtreecommitdiff
path: root/actions/icon.php
blob: 718425819bcc48d6f24f176d7e3f0d06d767f2f8 (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 tidypics icon action
	 * 
	 * @package ElggFile
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	$file_guid = get_input("file_guid");
	$file = get_entity($file_guid);
		
	if ($file)
	{	
		$filename = $file->thumbnail;
		$mime = $file->mimetype;
		
		header("Content-type: $mime");
		if (strpos($mime, "image/")!==false)
			header("Content-Disposition: inline; filename=\"$filename\"");
		else
			header("Content-Disposition: attachment; filename=\"$filename\"");

			
		$readfile = new ElggFile();
		$readfile->owner_guid = $file->owner_guid;
		$readfile->setFilename($filename);
			
		$contents = $readfile->grabFile();
		
		if (empty($contents))
			echo file_get_contents(dirname(dirname(__FILE__)) . "/graphics/icons/general.jpg" );
		else
			echo $contents;
		
		exit;
	}
	else
		register_error(elgg_echo("file:downloadfailed"));
?>