aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/actions/archive.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 17:52:18 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 17:52:18 +0000
commite4158cbf4159183b7d9362cf30c7fd5dfb1d877a (patch)
treed4f33641da43b059e4921638907f212212b2be09 /mod/reportedcontent/actions/archive.php
parentd7f37fc752418661e0dadae8dfc40f07e7603740 (diff)
downloadelgg-e4158cbf4159183b7d9362cf30c7fd5dfb1d877a.tar.gz
elgg-e4158cbf4159183b7d9362cf30c7fd5dfb1d877a.tar.bz2
updated reported content to use elgg_view_form
git-svn-id: http://code.elgg.org/elgg/trunk@8166 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/actions/archive.php')
-rw-r--r--mod/reportedcontent/actions/archive.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/mod/reportedcontent/actions/archive.php b/mod/reportedcontent/actions/archive.php
deleted file mode 100644
index dd5c6aef1..000000000
--- a/mod/reportedcontent/actions/archive.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-/**
- * Elgg reported content: archive action
- *
- * @package ElggReportedContent
- */
-
-$guid = (int) get_input('guid');
-
-$report = get_entity($guid);
-
-// Make sure we actually have permission to edit
-if ($report->getSubtype() == "reported_content" && $report->canEdit()) {
-
- // allow another plugin to override
- if (!elgg_trigger_plugin_hook('reportedcontent:archive', 'system', array('report' => $report), TRUE)) {
- system_message(elgg_echo("reportedcontent:notarchived"));
- forward(REFERER);
- }
-
- // change the state
- $report->state = "archived";
-
- system_message(elgg_echo("reportedcontent:archived"));
-
- forward(REFERER);
-}