aboutsummaryrefslogtreecommitdiff
path: root/views/default/object/image.php
blob: e4401a9501cbb495647e40056876340c19a3a5f2 (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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?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="tidypics_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="tidypics_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] . '">&#60;&#60;' . elgg_echo('image:back') . '</a>&nbsp;&nbsp;';
		
			if (array_key_exists(($current+1), $_SESSION['image_sort']))
				$next = '&nbsp;&nbsp;<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">' . elgg_echo('image:next') . '&#62;&#62;</a>';

?>	

<?php			
			echo '<div id="tidypics_desc">' . autop($desc) . '</div>';		
			echo '<div id="tidypics_image_full">';
			echo '<div id="tidypics_image_nav">' . $back . $next . '</div>';	  
?>
<div id='tagging_instructions'>
	<table>
		<tbody>
			<tr>
				<td width='375' align='center'><div id='instructions_default_message'><?php echo elgg_echo('image:doclickfortag'); ?></div></td>
				<td valign='middle'><button class='submit_button' onclick='closeInfoTag()'><?php echo elgg_echo('image:finish_tagging'); ?></button></td>
			</tr>
		</tbody>
	</table>
</div>

<?php
	$viewer = get_loggedin_user();
	$friends = get_entities_from_relationship('friend', $viewer->getGUID(), false, 'user', '', 0);
	
?>
<div id='cont-image'>
	<div id="cont-menu">
<?php
	$content = "<input type='hidden' name='entity_guid' value='$file_guid' />";
	$content .= "<ul id='phototagging-menu'>";
	$content .= "<li class='owner'><a href='#' rel='{$viewer->getGUID()}'> {$viewer->name} (" . elgg_echo('me') . ")</a></li>";
	
	if($friends) foreach($friends as $friend)
	{
		$content .= "<li><a href='#' rel='{$friend->getGUID()}'>{$friend->name}</a></li>"; 
	}
	
	$content .= "</ul>"; 

	$content .= "
		<fieldset>
			<button class='submit_button' type='submit'>" . elgg_echo('image:actiontag') . "</button>
		</fieldset>";
	
	echo elgg_view('input/form', array('internalid' => 'quicksearch', 'internalname' => 'form-phototagging', 'class' => 'quicksearch', 'action' => "{$vars['url']}action/tidypics/phototagging", 'body' => $content))
?>
	</div>
<?php
	$photo_tags = get_annotations($file_guid,'object','image','phototag');

if ($photo_tags) foreach ($photo_tags as $photo_tag)
{
	$data_tag = unserialize($photo_tag->value);
	
	
	if($data_tag->type == 'user')
		$data_tag->data = get_entity($data_tag->value);
	else
		$data_tag->data = $data_tag->value;
		
	echo "<div class='phototag' rel='{$photo_tag->id}' style='margin-left:{$data_tag->x1}px; margin-top:{$data_tag->y1}px; width:{$data_tag->width}px;'>";
	if($data_tag->type == 'user')
		echo "<em>{$data_tag->data->name}</em>";
	else
		echo "<em>{$data_tag->data}</em>";
	echo "<span style='width:" . ((int)$data_tag->width - 2) . "px; height:" . ((int)$data_tag->height - 2) . "px;'></span>";
	echo "</div>";
}else 
{
	echo "<div class='phototag'></div>";
}	

	if ($next)
		$click =  "onclick='toggleLink()'";
		
	echo '<img ' . $click . ' src="' . $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=' . $file_guid . '&size=large" border="0" alt="' . $title . '"/>';

?>
</div>

</div>

<div id="tidypics_controls">
<ul>
	<li><a href="javascript:void(0)" onclick="showInfoTag()"><?= elgg_echo('image:tagthisphoto') ?></a></li>
	<li><a href="<?php echo $vars['url']; ?>action/tidypics/download?file_guid=<?php echo $file_guid; ?>"><?php echo elgg_echo("image:download"); ?></a></li>
</ul>
</div>

<?php	
		$photo_tags = get_annotations($entity_guid,'object','image','phototag','',0,20,0);
		
		if ($photo_tags)
		{
?>	
			<div id="tidypics_phototags">
				<h3> <?= elgg_echo('image:inthisphoto') ?></h3>
				<ul>
<?php
			$users = array();
			$objects = array();
			
			if ($photo_tags) foreach ($photo_tags as $photo_tag)
			{
				$data_tag = unserialize($photo_tag->value);
				
				$name = "";
				
				$object = new stdClass();
				
				if($data_tag->type == 'user')
				{
					$data_tag->data = get_entity($data_tag->value);
					$object->img = elgg_view("profile/icon",array('entity' => $data_tag->data, 'size' => 'topbar',  'override' => true));
					$object->name = $data_tag->data->name;
					$object->rel = $data_tag->data->getUrl();
				}else
				{
					$data_tag->data = $data_tag->value;
					$object->img = "<img border='0' title='object' src='{$vars['url']}mod/tidypics/graphics/tag_yellow.png' />";
					$object->name = $data_tag->data;
					$object->rel = "#";
				}
				
				$object->html = "<li><a class='phototag-links' href='{$object->rel}' rel='{$photo_tag->id}'>$object->img<span>{$object->name}</span></a></li>";
				
				if($data_tag->type == 'user')
					$users[] = $object;
					
				else
					$objects[] = $object;
			}
			
			if(!empty($users)) foreach ($users as $user)
				echo $user->html;
				
			if(!empty($objects)) foreach ($objects as $object)
				echo $object->html;
			
?>
			</ul>
		</div>
<?php		
		}

?>


<div id="tidypics_info">
<?php
			if (!is_null($tags)) {
?>
			<div class="object_tag_string"><?php echo elgg_view('output/tags',array('value' => $tags));?></div>
<?php
			}
?>
			<?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
?>
	<script type="text/javascript" src="<?= $vars['url'] ?>/mod/tidypics/vendors/jquery.imgareaselect-0.6.2.js"></script>
	<script type="text/javascript" src="<?= $vars['url'] ?>/mod/tidypics/vendors/jquery.quicksearch.js"></script>
	 
	<script type="text/javascript">
	
		var coordinates;
	
		jQuery(document).ready(function(){
		   
			jQuery('#cont-menu ul li').quicksearch({
			  position: 'before',
			  attached: '#cont-menu ul',
			  loaderText: '',
			  inputClass: 'input-filtro',
			  labelText:"<p><?= elgg_echo('image:inserttag') ?></p>",
			  delay: 100
			})
			
			jQuery('#cont-menu ul').before("<p> o escoge a una persona:</p>");
			
			//avoid submit
			jQuery('#quicksearch').submit( function () { addTag()});
			
			
			setTimeout("fixContImage()",1000);
			
			//fix position
			jQuery('#cont-image .phototag em').height()
			
			//Este evento lo que hace es que cuando hace foco en el input se desmarcan todos
			jQuery('.input-filtro').focus(function(){jQuery("#cont-menu li a[class*='selected']").removeClass('selected');})
	
			});	
			
			
			jQuery('#cont-menu li a').click(function(){
				//Limpiamos todos
				jQuery("#cont-menu li a[class*='selected']").removeClass('selected');
	
	        	jQuery(this).toggleClass('selected');
			})
			
			
		
	
		
		var sUrl = "<?= $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] ?>";
		
		function toggleLink()
		{
			if(jQuery('#tagging_instructions:hidden').length)
				location.href = sUrl;
		}
		
		function showInfoTag()
		{
			if(jQuery('#tagging_instructions:hidden').length)
			{
				jQuery('#tagging_instructions').show();
				activeTagSystem();
			}
		}
		
		function closeInfoTag()
		{
			jQuery('#tagging_instructions').hide();
			jQuery('div[class*=imgareaselect]').remove();
			jQuery('#cont-menu').hide();
			jQuery('#cont-image img').unbind('mousedown');
		}
		
		function activeTagSystem()
		{
			jQuery('#image_full img').imgAreaSelect({selectionColor: 'white',
					 									  maxWidth: 200, 
														  maxHeight: 200,
														  minWidth: 60, 
														  minHeight: 60,
														  borderWidth: 2,
														  onSelectEnd: mostrarMenu,
														  onSelectStart: ocultarMenu}); 
		}
	
		function ocultarMenu()
		{
			jQuery('#cont-menu').hide();
			coordinates = "";
		}
			
		function mostrarMenu(oObject, oCoordenates)
		{
			constX = -70;
			constY = 1;
			//console.log(oCoordenates);
			//Mostramos el menu
			if (oCoordenates.width != 0 && oCoordenates.height != 0) {
				coordinates = oCoordenates;
				jQuery('#cont-menu').show().css({
					"margin-top": oCoordenates.y2+constY + "px",
					"margin-left": oCoordenates.x2+constX + "px"
				});
				jQuery(".input-filtro").focus();
			}
		}
		
		function addTag()
		{
			jQuery('#phototagging-menu li:hidden').find('a').removeClass('selected');
			oForm = jQuery('#quicksearch');
			oEl = jQuery('#quicksearch ul li:has(.selected)');
			if(jQuery('#quicksearch ul li:has(.selected)').length == 1)
				oForm.append("<input type='hidden' name='user_id' value='" + oEl.find('a').attr('rel') + "'")
			else
				oForm.append("<input type='hidden' name='word' value='" + oForm.find('input.input-filtro').val() + "'")
				
			if(coordinates.x1!=0)
			{
				sStr = "";
				for (x in coordinates)
				    sStr += x + ':' + coordinates[x] + '/';

				oForm.append("<input type='hidden' name='coordinates' value='" + sStr + "' />");
			
			}
		
			//Show loading	
			jQuery("#cont-menu label, #cont-menu input, #cont-menu p, #cont-menu span, #cont-menu button, #cont-menu ul, #cont-menu fieldset").hide();
			jQuery("#cont-menu ").append('<div align="center" class="ajax_loader"></div>');		
		
			
			return false;
			//oForm.submit();
		
		}
		
		jQuery(".phototag span").hover(function() {
			jQuery(this).prev("em").stop(true, true).animate({opacity: "show"}, "fast").css({'display':'block','-moz-border-radius-topleft':'2px','-moz-border-radius-topright':'2px','-moz-border-radius-bottomleft':'2px','-moz-border-radius-bottomright':'2px'});
		}, function() {
		jQuery(this).prev("em").animate({opacity: "hide"}, "fast");
		});
		
		function fixContImage()
		{
			jQuery('#cont-image').width(jQuery('#cont-image img').width()); 
			jQuery('#cont-image').height(jQuery('#cont-image img').height());
			setTimeout("if(jQuery('#cont-image').width() < jQuery('#cont-image img').width()) setTimeout(\"fixContImage()\",500);",300);
		}
		
		jQuery('a.phototag-links').hover(function() {
			iRel = jQuery(this).attr('rel');
			jQuery('div.phototag[rel*='+ iRel + ']').find("em").stop(true, true).animate({opacity: "show"}, "fast").css({'display':'block','-moz-border-radius-topleft':'2px','-moz-border-radius-topright':'2px','-moz-border-radius-bottomleft':'0px','-moz-border-radius-bottomright':'0px'});
			jQuery('div.phototag[rel*='+ iRel + ']').find("span").css({'border':'1px solid white','border-top':'none'} );
		}, function() {
		iRel = jQuery(this).attr('rel');
		jQuery('div.phototag[rel*='+ iRel + ']').find("em").animate({opacity: "hide"}, "fast");
		jQuery('div.phototag[rel*='+ iRel + ']').find("span").css("border","none");
		
		});
		
	</script>