diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 17:13:13 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 17:13:13 +0000 |
commit | b06376e171d82c821106f8f86a856fb2aea41f7a (patch) | |
tree | 2454c18480fdb0ad84313b17bae7f646b6ebf54e /actions/import/opendd.php | |
parent | 3921f1eaa710f5b76d2ca222b0b16bef215b0f3a (diff) | |
download | elgg-b06376e171d82c821106f8f86a856fb2aea41f7a.tar.gz elgg-b06376e171d82c821106f8f86a856fb2aea41f7a.tar.bz2 |
Closes #189: ODD -> OpenDD
git-svn-id: https://code.elgg.org/elgg/trunk@1611 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/import/opendd.php')
-rw-r--r-- | actions/import/opendd.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/actions/import/opendd.php b/actions/import/opendd.php new file mode 100644 index 000000000..6802fc5a2 --- /dev/null +++ b/actions/import/opendd.php @@ -0,0 +1,31 @@ +<?php + /** + * Elgg OpenDD import action. + * + * This action accepts data to import (in OpenDD format) and performs and import. It accepts + * data as $data. + * + * @package Elgg + * @subpackage Core + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Marcus Povey + * @copyright Curverider Ltd 2008 + * @link http://elgg.org/ + */ + + // Safety + admin_gatekeeper(); + + // Get input + $data = get_input($data); + + // Import + $return = import($data); + + if ($return) + system_message(elgg_echo('importsuccess')); + else + register_error(elgg_echo('importfail')); + + forward($_SERVER['HTTP_REFERER']); +?>
\ No newline at end of file |