From 36abf69637671a1cf65101212596118d155ef54a Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 12 Mar 2010 02:12:47 +0000 Subject: Rough first version of a new blog plugin. git-svn-id: http://code.elgg.org/elgg/trunk@5370 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/blog/archive.php | 56 ---------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 mod/blog/archive.php (limited to 'mod/blog/archive.php') diff --git a/mod/blog/archive.php b/mod/blog/archive.php deleted file mode 100644 index 9648c75c0..000000000 --- a/mod/blog/archive.php +++ /dev/null @@ -1,56 +0,0 @@ - 'blog')); -// Get timestamp upper and lower bounds -$timelower = (int) get_input('param2'); -$timeupper = (int) get_input('param3'); -if (empty($timelower)) { - forward('pg/blog/'.$page_owner->username); - exit; -} -if (empty($timeupper)) { - $timeupper = $timelower + (86400 * 30); -} - -// Set blog title -$area2 = elgg_view_title(sprintf(elgg_echo('date:month:'.date('m',$timelower)),date('Y',$timelower))); - -set_context('search'); -// Get a list of blog posts -$blogs = list_user_objects($page_owner->getGUID(),'blog',10,false,false,true,$timelower,$timeupper); -$area2 .= "
" . $blogs . "
"; -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'); -} - -//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('elggcampus_layout/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:user'),$page_owner->name),$body); \ No newline at end of file -- cgit v1.2.3