aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/views/default/blog/sidebar_menu.php
blob: f69e23e298a8c4d4a1c336ea2304581ce4d32a2f (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
65
<?php
/**
 * Blog sidebar menu.
 *
 * @package Blog
 */

// a few cases to consider:
// 1. looking at all posts
// 2. looking at a user's post
// 3. looking at your posts

/*
Logged in or not doesn't matter unless you're looking at your blog.
	Does it matter then on the side bar?

All blogs:
	Archives

Owned blogs;
	Archives
*/

$loggedin_user = get_loggedin_user();
$page_owner = elgg_get_page_owner();

// include a view for plugins to extend
echo elgg_view("blogs/sidebar", array("object_type" => 'blog'));

// fetch & display latest comments on all blog posts
$comments = get_annotations(0, "object", "blog", "generic_comment", "", 0, 4, 0, "desc");
echo elgg_view('annotation/latest_comments', array('comments' => $comments));

// only show archives for users or groups.
// This is a limitation of the URL schema.
if ($page_owner) {
	$dates = blog_get_blog_months($user);

	if ($dates) {
		echo "<h3>" . elgg_echo('blog:archives') . "</h3>";
		echo '<ul class="blog_archives">';
		foreach($dates as $date) {
			$date = $date->yearmonth;

			$timestamplow = mktime(0, 0, 0, substr($date,4,2) , 1, substr($date, 0, 4));
			$timestamphigh = mktime(0, 0, 0, ((int) substr($date, 4, 2)) + 1, 1, substr($date, 0, 4));

			if (!isset($page_owner)) {
				$page_owner = elgg_get_page_owner();
			}

			$link = elgg_get_site_url() . 'pg/blog/' . $page_owner->username . '/archive/' . $timestamplow . '/' . $timestamphigh;
			$month = sprintf(elgg_echo('date:month:' . substr($date,4,2)), substr($date, 0, 4));
			echo "<li><a href=\"$link\" title=\"$month\">$month</a></li>";
		}

		echo '</ul>';
	}
	
	// friends page lists all tags; mine lists owner's
	$owner_guid = ($vars['page'] == 'friends') ? '' : $page_owner->getGUID();
	echo display_tagcloud(0, 50, 'tags', 'object', 'blog', $owner_guid);
} else {
	echo display_tagcloud(0, 50, 'tags', 'object', 'blog');
}