aboutsummaryrefslogtreecommitdiff
path: root/mod/file/views/default/file/specialcontent/image/default.php
blob: fbd994a0b22f7b2c65e3e1b07af7aa049e1c7282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Display an image
 */

$image_url = elgg_get_site_url() . "mod/file/thumbnail.php?file_guid={$vars['entity']->getGUID()}&size=large";
$image_url = elgg_format_url($image_url);
$download_url = elgg_get_site_url() . "mod/file/download.php?file_guid={$vars['entity']->getGUID()}";

if ($vars['full_view'] && $smallthumb = $vars['entity']->smallthumb) {
	echo <<<HTML
		<div class="file-photo">
			<a href="$download_url"><img class="elgg-photo" src="$image_url" /></a>
		</div>
HTML;
}