aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/views/default/widgets/river_widget/view.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/riverdashboard/views/default/widgets/river_widget/view.php')
-rw-r--r--mod/riverdashboard/views/default/widgets/river_widget/view.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/riverdashboard/views/default/widgets/river_widget/view.php b/mod/riverdashboard/views/default/widgets/river_widget/view.php
deleted file mode 100644
index 1546351e6..000000000
--- a/mod/riverdashboard/views/default/widgets/river_widget/view.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
- /**
- * View the widget
- *
- * @package ElggRiver
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2009
- * @link http://elgg.com/
- */
-
- $owner = page_owner_entity();
-
- //get the type - mine or friends
- $type = $vars['entity']->content_type;
- if(!$type)
- $type = "mine";
-
- //based on type grab the correct content type
- if($type == "mine")
- $content_type = '';
- else
- $content_type = 'friend';
-
- //get the number of items to display
- $limit = $vars['entity']->num_display;
- if(!$limit)
- $limit = 4;
-
- //grab the river
- $river = elgg_view_river_items($owner->getGuid(), 0, $content_type, $content[0], $content[1], '', $limit,0,0,false);
-
- //display
- echo "<div class=\"contentWrapper\">";
- if($type != 'mine')
- echo "<div class='content_area_user_title'><h2>" . elgg_echo("friends") . "</h2></div>";
- echo $river;
- echo "</div>";
-
-?> \ No newline at end of file