Elgg  Version 1.11
opendd.php
Go to the documentation of this file.
1 <?php
13 $data = get_input('data', '', false);
14 
15 $return = import($data);
16 
17 if ($return) {
18  system_message(elgg_echo('importsuccess'));
19 } else {
20  register_error(elgg_echo('importfail'));
21 }
22 
register_error($error)
Display an error on next page load.
Definition: elgglib.php:455
system_message($message)
Display a system message on next page load.
Definition: elgglib.php:442
const REFERER
Definition: elgglib.php:1995
forward($location="", $reason='system')
Forward to $location.
Definition: elgglib.php:80
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
$data
Definition: opendd.php:13
$return
Definition: opendd.php:15