aboutsummaryrefslogtreecommitdiff
path: root/views/default/tidypics/gallery.php
blob: ba6f7b11d3c9af6b2517ab5d72bfa577fe660b12 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
 * view a gallery of photos or albums
 *
 */

if ($vars['context'] == 'widget') {
	$num_wide = 3;
} else {
	// four albums across
	$num_wide = 4;
}

$context = $vars['context'];
$offset = $vars['offset'];
$entities = $vars['entities'];
$limit = $vars['limit'];
$count = $vars['count'];
$baseurl = $vars['baseurl'];
$context = $vars['context'];
$viewtype = $vars['viewtype'];
$pagination = $vars['pagination'];
$fullview = $vars['fullview'];

$html = "";
$nav = "";

if (isset($vars['viewtypetoggle'])) {
	$viewtypetoggle = $vars['viewtypetoggle'];
} else {
	$viewtypetoggle = true;
}

if ($context == "search" && $count > 0 && $viewtypetoggle) {
	$nav .= elgg_view('navigation/viewtype', array(
		'baseurl' => $baseurl,
		'offset' => $offset,
		'count' => $count,
		'viewtype' => $viewtype,
	));
}

if ($pagination) {
	$nav .= elgg_view('navigation/pagination',array(
		'baseurl' => $baseurl,
		'offset' => $offset,
		'count' => $count,
		'limit' => $limit,
	));
}

$html .= $nav;

if (is_array($entities) && sizeof($entities) > 0) {
	$counter = 0;
	foreach($entities as $entity) {
		if ($counter % $num_wide == 0) {
			$html .= "<div class=\"tidypics_line_break\"></div>";
		}
		$html .= elgg_view_entity($entity, $fullview);
		$counter++;
	}
}

$html .= '<div class="clearfloat"></div>';

if ($count) {
	$html .= $nav;
}

echo $html;