diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-28 14:59:23 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-28 14:59:23 +0000 |
commit | 82d30dcb3cc20330d72c30c3fee08b3b99689409 (patch) | |
tree | 91a782c2e0b640fbaa55519ce704d590daee6eb5 /actions | |
parent | 4711091be04584cdab4060a6ff4e0bea03bc00e9 (diff) | |
download | elgg-82d30dcb3cc20330d72c30c3fee08b3b99689409.tar.gz elgg-82d30dcb3cc20330d72c30c3fee08b3b99689409.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Importing ODD action added
git-svn-id: https://code.elgg.org/elgg/trunk@743 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/import/odd.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/actions/import/odd.php b/actions/import/odd.php new file mode 100644 index 000000000..35b2dfea4 --- /dev/null +++ b/actions/import/odd.php @@ -0,0 +1,24 @@ +<?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/ + */ + + // Get input + $data = get_input($data); + + // Import + $return = import($data); + + if ($return) + system_message(elgg_echo('importsuccess')); +?>
\ No newline at end of file |