blob: b91a38dc4c8badcfa0bf95d6c597d716b3d81b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?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
* @author Curverider Ltd
* @link http://elgg.org/
*/
// Safety
admin_gatekeeper();
action_gatekeeper();
// Get input
$data = get_input('data', '', false);
// Import
$return = import($data);
if ($return) {
system_message(elgg_echo('importsuccess'));
} else {
register_error(elgg_echo('importfail'));
}
forward($_SERVER['HTTP_REFERER']);
|