diff options
Diffstat (limited to 'mod/blog/everyone.php')
-rw-r--r-- | mod/blog/everyone.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/mod/blog/everyone.php b/mod/blog/everyone.php deleted file mode 100644 index 9270b33a6..000000000 --- a/mod/blog/everyone.php +++ /dev/null @@ -1,37 +0,0 @@ -<?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("one_column_with_sidebar", $area2, $area3); - - // Display page - page_draw(elgg_echo('blog:everyone'),$body); - -?>
\ No newline at end of file |