aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/opendd.php
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:19:28 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:19:28 +0000
commit339c42f966b73652d7e4655443062bf77c7742e0 (patch)
treee85dbff96e67eaba00d7aabe903100812c2d2ddc /mod/activity/opendd.php
parent47475737ced41c30946a2d9113d0d359c157474b (diff)
downloadelgg-339c42f966b73652d7e4655443062bf77c7742e0.tar.gz
elgg-339c42f966b73652d7e4655443062bf77c7742e0.tar.bz2
old activity and river removed
git-svn-id: https://code.elgg.org/elgg/trunk@2816 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/opendd.php')
-rw-r--r--mod/activity/opendd.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/mod/activity/opendd.php b/mod/activity/opendd.php
deleted file mode 100644
index 86d00ce4a..000000000
--- a/mod/activity/opendd.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
- /**
- * Elgg activity plugin opendd export of a given statement.
- *
- * @package ElggActivity
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2009
- * @link http://elgg.com/
- */
-
- $id = (int)get_input('statement_id');
- $type = sanitise_string(get_input('statement_type'));
- $metaname = sanitise_string(get_input('metaname'));
-
- $statement = construct_riverstatement_from_log(
- get_log_entry($id)
- );
-
- global $CONFIG;
-
- switch ($type)
- {
- case 'statement' : $result = activity_export_statement($statement, $id);
- foreach ($result as $r) $body .= "$r";
- break;
- case 'metadata' :
-
- $md = activity_export_field_from_statement($statement, $id, $metaname);
- $body .= "$md";
- break;
- }
-
- page_draw('',$body);
-?> \ No newline at end of file