aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/everyone.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/blog/everyone.php')
-rw-r--r--mod/blog/everyone.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/mod/blog/everyone.php b/mod/blog/everyone.php
new file mode 100644
index 000000000..47d22f35b
--- /dev/null
+++ b/mod/blog/everyone.php
@@ -0,0 +1,37 @@
+<?php
+
+ /**
+ * Elgg view all blog posts from all users page
+ *
+ * @package ElggBlog
+ * @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-2010
+ * @link http://elgg.com/
+ */
+
+ // Load Elgg engine
+ define('everyoneblog','true');
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+// Get the current page's owner
+ $page_owner = $_SESSION['user'];
+ set_page_owner($_SESSION['guid']);
+
+ $area2 = elgg_view_title(elgg_echo('blog:everyone'));
+
+ $area2 .= "<div id='blogs'>" . elgg_list_entities(array('type' => 'object', 'subtype' => 'blog', 'limit' => 10, 'full_view' => FALSE)) . "<div class='clearfloat'></div></div>";
+
+ // get tagcloud
+ // $area3 = "This will be a tagcloud for all blog posts";
+
+ // Get categories, if they're installed
+ global $CONFIG;
+ $area3 = elgg_view('blog/categorylist',array('baseurl' => $CONFIG->wwwroot . 'search/?subtype=blog&tagtype=universal_categories&tag=','subtype' => 'blog'));
+
+ $body = elgg_view_layout("two_column_left_sidebar", '', $area2, $area3);
+
+ // Display page
+ page_draw(elgg_echo('blog:everyone'),$body);
+
+?> \ No newline at end of file