blob: 86ea686ba13a72258945acaa6f3b1512e9e19c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Elgg Videolist Plugin
* This plugin allows users to create a library of youtube videos
*
* @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
*/
if ($foreach = get_entities('object','',$vars['entity']->guid)) {
foreach($foreach as $videos)
echo elgg_view_entity($videos);
}
?>
|