aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/index.php
diff options
context:
space:
mode:
authornickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-05-25 22:18:22 +0000
committernickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-05-25 22:18:22 +0000
commit76d3b27335145459e1b9da4e07cf37ad8bd050c1 (patch)
tree7ac84ed02686061d1ced1e1951598e30334da9c3 /mod/reportedcontent/index.php
parent6a64b7d0b595c97c4bef9a8fa22d567611fb3fd1 (diff)
downloadelgg-76d3b27335145459e1b9da4e07cf37ad8bd050c1.tar.gz
elgg-76d3b27335145459e1b9da4e07cf37ad8bd050c1.tar.bz2
Updating administration plugins with admin submenu views.
git-svn-id: http://code.elgg.org/elgg/trunk@6220 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/index.php')
-rw-r--r--mod/reportedcontent/index.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/mod/reportedcontent/index.php b/mod/reportedcontent/index.php
deleted file mode 100644
index bb969c343..000000000
--- a/mod/reportedcontent/index.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-/**
- * Elgg Reported content
- *
- * @package ElggReportedContent
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.com/
- */
-
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-admin_gatekeeper();
-set_context('admin');
-// Set admin user for user block
-set_page_owner($_SESSION['guid']);
-
-
-$title = elgg_view_title(elgg_echo('reportedcontent'));
-
-$reported = elgg_get_entities(array('types' => 'object', 'subtypes' => 'reported_content', 'limit' => 9999));
-
-$area2 = elgg_view("reportedcontent/listing", array('entity' => $reported));
-
-// Display main admin menu
-page_draw(elgg_echo('reportedcontent'),elgg_view_layout("administration", $title . $area2)); \ No newline at end of file