aboutsummaryrefslogtreecommitdiff
path: root/mod/file/world.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 14:58:46 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 14:58:46 +0000
commitee47fbf70fc7f67efde6926237e13fc20a664a72 (patch)
treef1c5430539b3acf9dfb708595f42f29f57aa17de /mod/file/world.php
parent52f127f23c21675ff7e0d35f1a94741c77e3ed52 (diff)
downloadelgg-ee47fbf70fc7f67efde6926237e13fc20a664a72.tar.gz
elgg-ee47fbf70fc7f67efde6926237e13fc20a664a72.tar.bz2
Refs #3158 namespace file plugin's page scripts
git-svn-id: http://code.elgg.org/elgg/trunk@8766 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/world.php')
-rw-r--r--mod/file/world.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/mod/file/world.php b/mod/file/world.php
deleted file mode 100644
index a55dcb452..000000000
--- a/mod/file/world.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/**
- * All files
- *
- * @package ElggFile
- */
-
-elgg_push_breadcrumb(elgg_echo('file'));
-
-$limit = get_input("limit", 10);
-
-$title = elgg_echo('file:all');
-
-elgg_push_context('search');
-$content = elgg_list_entities(array(
- 'types' => 'object',
- 'subtypes' => 'file',
- 'limit' => $limit,
- 'full_view' => FALSE
-));
-elgg_pop_context();
-
-$sidebar = file_get_type_cloud();
-
-$body = elgg_view_layout('content', array(
- 'filter_context' => 'all',
- 'content' => $content,
- 'title' => $title,
- 'sidebar' => $sidebar,
-));
-
-echo elgg_view_page($title, $body);