diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-15 12:32:29 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-15 12:32:29 +0000 |
commit | be55e9428629a17b28e1c03b60640db2b556d49d (patch) | |
tree | c291650887c93236d7275eb04c3eef2c5cfcffa2 /mod/reportedcontent/actions/delete.php | |
parent | a25b09af5f68978f2616f71d1ab821c5abafdc8a (diff) | |
download | elgg-be55e9428629a17b28e1c03b60640db2b556d49d.tar.gz elgg-be55e9428629a17b28e1c03b60640db2b556d49d.tar.bz2 |
reported content updated
git-svn-id: https://code.elgg.org/elgg/trunk@1934 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/actions/delete.php')
-rw-r--r-- | mod/reportedcontent/actions/delete.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/mod/reportedcontent/actions/delete.php b/mod/reportedcontent/actions/delete.php new file mode 100644 index 000000000..f304a47f2 --- /dev/null +++ b/mod/reportedcontent/actions/delete.php @@ -0,0 +1,37 @@ +<?php
+
+ /**
+ * Elgg reported content: delete action
+ *
+ * @package ElggReportedCOntent
+ * @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
+ * @link http://elgg.org/
+ */
+
+ // Make sure we're logged in and are admin
+ admin_gatekeeper();
+
+ // Get input data
+ $guid = (int) get_input('item');
+
+ // Make sure we actually have permission to edit
+ $reported = get_entity($guid);
+ if ($reported->getSubtype() == "reported_content" && $reported->canEdit()) {
+
+ // Delete it!
+ $rowsaffected = $reported->delete();
+ if ($rowsaffected > 0) {
+ // Success message
+ system_message(elgg_echo("reportedcontent:deleted"));
+ } else {
+ register_error(elgg_echo("reportedcontent:notdeleted"));
+ }
+
+ // Forward back to the reported content page
+ forward("pg/reportedcontent/");
+
+ }
+
+?>
\ No newline at end of file |