diff options
Diffstat (limited to 'views/rss/videolist')
-rw-r--r-- | views/rss/videolist/contentwrapper.php | 15 | ||||
-rw-r--r-- | views/rss/videolist/videolist.php | 17 |
2 files changed, 0 insertions, 32 deletions
diff --git a/views/rss/videolist/contentwrapper.php b/views/rss/videolist/contentwrapper.php deleted file mode 100644 index c8e2438d5..000000000 --- a/views/rss/videolist/contentwrapper.php +++ /dev/null @@ -1,15 +0,0 @@ -<?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 - */ - - - echo $vars['body']; - -?> diff --git a/views/rss/videolist/videolist.php b/views/rss/videolist/videolist.php deleted file mode 100644 index 7745b070b..000000000 --- a/views/rss/videolist/videolist.php +++ /dev/null @@ -1,17 +0,0 @@ -<?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 = elgg_get_entities(array('types' => 'object', 'subtypes' => 'videolist'))) { - foreach($foreach as $videos) - echo elgg_view_entity($videos); - } - -?> |