diff options
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 |