export posts also
This commit is contained in:
parent
c4b292a4f1
commit
83a36cbd13
|
@ -36,9 +36,19 @@ function uexport_init(&$a) {
|
||||||
$profile[][$k] = $v;
|
$profile[][$k] = $v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$item = array();
|
||||||
|
$r = q("SELECT * FROM `item` WHERE `uid` = %d ",
|
||||||
|
local_user()
|
||||||
|
);
|
||||||
|
if(count($r)) {
|
||||||
|
foreach($r as $rr)
|
||||||
|
foreach($rr as $k => $v)
|
||||||
|
$item[][$k] = $v;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$output = array('user' => $user, 'contact' => $contact, 'profile' => $profile);
|
|
||||||
|
$output = array('user' => $user, 'contact' => $contact, 'profile' => $profile, 'item' => $item );
|
||||||
|
|
||||||
header("Content-type: text/json");
|
header("Content-type: text/json");
|
||||||
echo str_replace('\\/','/',json_encode($output));
|
echo str_replace('\\/','/',json_encode($output));
|
||||||
|
|
Loading…
Reference in a new issue