blob: 646590c95e586c31d303601a2148d7f941134cbc (
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
|
<?php
/**
* Elgg Video Plugin
* This plugin allows users to create a library of videos for groups
*
* @package ElggProfile
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Prateek Choudhary <synapticfield@gmail.com>
* @copyright Prateek Choudhary
*/
?>
<div class="group_tool_widget video">
<h3><?php echo elgg_echo("videolist:group"); ?></h3>
<?php
//the number of files to display
$number = (int) $vars['entity']->num_display;
if (!$number)
$number = 5;
//get the user's files
$videos = elgg_get_entities(array('types' => 'object', 'subtypes' => 'videolist', 'container_guids' => page_owner(), 'limit' => $number));
//if there are some files, go get them
if ($videos) {
foreach($videos as $f){
$mime = $f->mimetype;
$owner = get_entity($f->getOwner());
$numcomments = elgg_count_comments($f);
echo "<div class='entity_listing clearfloat'>";
echo "<div class='entity_listing_icon'><a href=\"{$vars['url']}pg/videolist/watch/{$f->guid}\"><img src=\"".$f->thumbnail."\" border=\"0\" width=\"85\" /></a></div>";
echo "<div class='entity_listing_info'>";
echo "<p class='entity_title'><a href=\"{$vars['url']}pg/videolist/watch/{$f->guid}\">" . $f->title ."</a></p><p class='entity_subtext'><a href=\"{$vars['url']}pg/profile/{$owner->username}\">{$owner->name}</a> ";
echo friendly_time($f->time_created) . "</p>";
echo "</div></div>";
}
//get a link to the users files
$users_file_url = $vars['url'] . "pg/videolist/owned/" . page_owner_entity()->username;
echo "<p><a href=\"{$users_file_url}\">" . elgg_echo("videolist:groupall") . "</a></p>";
} else {
echo "<p class='margin_top'>" . elgg_echo("videolist:none") . "</p>";
}
echo "</div>";
?>
|