aboutsummaryrefslogtreecommitdiff
path: root/actions/import/opendd.php
blob: 9121812e1bcbfe539fb3f036fcbdbb5c806d97d6 (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
31
32
<?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 Curverider Ltd
	 * @copyright Curverider Ltd 2008
	 * @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']);
?>