aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/shared.php
blob: 67dae202e40c3ca44d557e4ae79004454c447e34 (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
<?php

/**
 * Elgg blog shared page
 */

// Load Elgg engine
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
		
// Get the current page's owner
$page_owner = page_owner_entity();
if ($page_owner === false || is_null($page_owner)) {
	$page_owner = $_SESSION['user'];
	set_page_owner($_SESSION['guid']);
}

//get the shared access collection
$sac = get_input('sac');

//set breadcrumbs
//$area1 = elgg_view('elggcampus_layout/breadcrumbs_general', array('object_type' => 'blog', 'context' => 'shared', 'sac' => $sac));

//set blog header
if(page_owner()== get_loggedin_user()->guid){
	$area1 .= elgg_view('blog/blog_header', array('context' => "own", 'type' => 'blog'));
}elseif($page_owner instanceof ElggGroup){
	$area1 .= elgg_view('groups/blog_header_group');
}else{
	$area1 .= elgg_view('blog/blog_header_visit', array('type' => 'blog'));
}
		
// Get a list of blog posts
set_context('search');
$get_blogs = list_entities_from_access_id($sac, "object", "blog", 0, 10, false, false,true);
if($get_blogs != "")
	$area2 = "<div id=\"blogs\">" . $get_blogs . "<div class='clearfloat'></div></div>";
else
	$area2 = "<div class=\"ContentWrapper\">There are no blog posts in this work group.</div>";
set_context('blog');
//if the logged in user is not looking at their stuff, display the ownerblock otherwise
//show the users favourites
if(page_owner()	!= get_loggedin_user()->guid){
	$area3 = elgg_view('blog/ownerblock');
}else{	
	//a view for the favourites plugin to extend
	$area3 .= elgg_view("blogs/favourite", array("object_type" => 'blog'));
}
//get the latest comments on user's blog posts
$comments = get_annotations(0, "object", "blog", "generic_comment", "", 0, 4, 0, "desc",0,0,page_owner());
$area3 .= elgg_view('page_elements/latest_comments', array('comments' => $comments));
//a view for the favourites plugin to extend
$area3 .= elgg_view("blogs/sidebar_options", array("object_type" => 'blog'));
//display archive
$area3 .= elgg_view("blog/archive");
// Display them in the page
$body = elgg_view_layout("one_column_with_sidebar", $area1.$area2, $area3);
	
// Display page
page_draw(sprintf(elgg_echo('blog:workgroup'),$page_owner->name),$body);