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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<?php
/**
*
* Tidypics image object views
*/
global $CONFIG;
$file = $vars['entity'];
$file_guid = $file->getGUID();
$tags = $file->tags;
$title = $file->title;
$desc = $file->description;
$owner = $vars['entity']->getOwnerEntity();
$friendlytime = friendly_time($vars['entity']->time_created);
$mime = $file->mimetype;
if (get_context() == "search") { //if this is the search view
if (get_input('search_viewtype') == "gallery") {
?>
<div class="album_images">
<a href="<?php echo $file->getURL();?>"><img src="<?php echo $vars['url'];?>mod/tidypics/thumbnail.php?file_guid=<?php echo $file_guid;?>&size=small" border="0" alt="thumbnail"/></a>
</div>
<?php
}
else{
//image list-entity view
$info = '<p><a href="' .$file->getURL(). '">'.$title.'</a></p>';
$info .= "<p class=\"owner_timestamp\"><a href=\"{$vars['url']}pg/photos/owned/{$owner->username}\">{$owner->name}</a> {$friendlytime}";
$numcomments = elgg_count_comments($file);
if ($numcomments)
$info .= ", <a href=\"{$file->getURL()}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")</a>";
$info .= "</p>";
$icon = "<a href=\"{$file->getURL()}\">" . elgg_view("tidypics/icon", array("mimetype" => $mime, 'thumbnail' => $file->thumbnail, 'file_guid' => $file_guid, 'size' => 'small')) . "</a>";
echo elgg_view_listing($icon, $info);
}
} else {
//tidypics image display
if (!$vars['full']) { //simple gallery view
?>
<div class="album_images">
<a href="<?php echo $file->getURL();?>"><img src="<?php echo $vars['url'];?>mod/tidypics/thumbnail.php?file_guid=<?php echo $file_guid;?>&size=small" border="0" alt="thumbnail"/></a>
</div>
<?php
} else {
// individual full image view
echo '<div class="contentWrapper">';
$album = get_entity($file->container_guid);
//compile back | next links
$current = array_search($file_guid, $_SESSION['image_sort']);
if (!$current) { // means we are no longer using the correct album array
//rebuild the array ->
$count = get_entities("object","image", $album->guid, '', 999);
$_SESSION['image_sort'] = array();
foreach($count as $image){
array_push($_SESSION['image_sort'], $image->guid);
}
$current = array_search($file_guid, $_SESSION['image_sort']);
}
if (!$current == 0)
$back = '<a href="' .$vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current-1] . '"><<' . elgg_echo('image:back') . '</a> ';
if (array_key_exists(($current+1), $_SESSION['image_sort']))
$next = ' <a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">' . elgg_echo('image:next') . '>></a>';
?>
<?php
echo '<div id="tidypics_desc">' . autop($desc) . '</div>';
echo '<div id="image_full">';
echo '<div id="image_nav">' . $back . $next . '</div>';
if ($next) echo '<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">';
echo '<img src="' . $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=' . $file_guid . '&size=large" border="0" alt="' . $title . '"/>';
if ($next) echo '</a>';
echo '</div>';
?>
<div id="tidypics_controls">
<div class="tidypics_download"><p><a href="<?php echo $vars['url']; ?>action/tidypics/download?file_guid=<?php echo $file_guid; ?>"><?php echo elgg_echo("image:download"); ?></a></p></div>
</div>
<div id="tidypics_info">
<div class="object_tag_string"><?php echo elgg_view('output/tags',array('value' => $tags));?></div>
<?php echo elgg_echo('image:by');?> <b><a href="<?php echo $vars['url']; ?>pg/profile/<?php echo $owner->username; ?>"><?php echo $owner->name; ?></a></b> <?php echo $friendlytime; ?><br>
</div>
<?php
echo elgg_view_comments($file);
echo '</div>';
}
} // end of tidypics image display
?>
|