aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/index.php
blob: 737fd44468bc13ea16199ff55f4b3fc04b87e393 (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
<?php

	/**
	 * Elgg river dashboard plugin index page
	 * 
	 * @package ElggRiverDash
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd <info@elgg.com>
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.org/
	 */

		require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php');

		gatekeeper();
		
		$content = get_input('content','');
		$content = explode(',',$content);
		$type = $content[0];
		$subtype = $content[1];
		$orient = get_input('display');
		
		if ($type == 'all') {
			$type = '';
			$subtype = '';
		}

		//set a view for the wire to extend
		$area1 = elgg_view("activity/thewire");

		//set a view to display newest members
		$area1 .= elgg_view("riverdashboard/newestmembers");

		//set a view to display a welcome message
		$body = elgg_view("riverdashboard/welcome");

		//set a view to display a site wide message
		$body .= elgg_view("riverdashboard/sitemessage");

		
		switch($orient) {
			case 'mine':
							$subject_guid = $_SESSION['user']->guid;
							$relationship_type = ''; 
							break;
			case 'friends':	$subject_guid = $_SESSION['user']->guid;
							$relationship_type = 'friend';
							break;
			default:		$subject_guid = 0;
							$relationship_type = '';
							break;
		}

		$river = elgg_view_river_items($subject_guid, 0, $relationship_type, $type, $subtype, '');
		$body .= elgg_view('riverdashboard/nav',array(
														'type' => $type,
														'subtype' => $subtype,
														'orient' => $orient 
													));
		$body .= $river;
				
		echo page_draw(elgg_echo('dashboard'),elgg_view_layout('sidebar_boxes',$area1,$body));

?>