From be55e9428629a17b28e1c03b60640db2b556d49d Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 15 Aug 2008 12:32:29 +0000 Subject: reported content updated git-svn-id: https://code.elgg.org/elgg/trunk@1934 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/reportedcontent/actions/add.php | 1 + mod/reportedcontent/actions/archive.php | 34 ++++++++++++++++++++++++++++++ mod/reportedcontent/actions/delete.php | 37 +++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 mod/reportedcontent/actions/archive.php create mode 100644 mod/reportedcontent/actions/delete.php (limited to 'mod/reportedcontent/actions') diff --git a/mod/reportedcontent/actions/add.php b/mod/reportedcontent/actions/add.php index bfb5fcfb3..c37cae466 100644 --- a/mod/reportedcontent/actions/add.php +++ b/mod/reportedcontent/actions/add.php @@ -27,6 +27,7 @@ if ($entity->save()) { system_message(elgg_echo('reportedcontent:success')); + $entity->state = "active"; forward($address); } else { register_error(elgg_echo('reportedcontent:failed')); diff --git a/mod/reportedcontent/actions/archive.php b/mod/reportedcontent/actions/archive.php new file mode 100644 index 000000000..312d05eea --- /dev/null +++ b/mod/reportedcontent/actions/archive.php @@ -0,0 +1,34 @@ + + * @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()) { + + // change the state + $reported->state = "archived"; + + // Success message + system_message(elgg_echo("reportedcontent:archived")); + + // Forward back to the reported content page + forward("pg/reportedcontent/"); + + } + +?> \ No newline at end of file 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 @@ + + * @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 -- cgit v1.2.3