diff options
author | Friendika <info@friendika.com> | 2011-03-22 03:07:46 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-22 03:07:46 -0700 |
commit | c4b292a4f103eb049c13dbe3c62f0438c18de816 (patch) | |
tree | 105ba225e56b5798e42c9c280f2958fec73bf859 /mod/uexport.php | |
parent | cd2a0802e4840253540f256fc49459b8e7c1e911 (diff) | |
download | volse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.tar.gz volse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.tar.bz2 volse-hubzilla-c4b292a4f103eb049c13dbe3c62f0438c18de816.zip |
account/profile/contacts export
Diffstat (limited to 'mod/uexport.php')
-rw-r--r-- | mod/uexport.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/mod/uexport.php b/mod/uexport.php new file mode 100644 index 000000000..423c3a82f --- /dev/null +++ b/mod/uexport.php @@ -0,0 +1,48 @@ +<?php + +function uexport_init(&$a) { + + if(! local_user()) + killme(); + + $user = array(); + $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", + local_user() + ); + if(count($r)) { + foreach($r as $rr) + foreach($rr as $k => $v) + $user[$k] = $v; + + } + $contact = array(); + $r = q("SELECT * FROM `contact` WHERE `uid` = %d ", + local_user() + ); + if(count($r)) { + foreach($r as $rr) + foreach($rr as $k => $v) + $contact[][$k] = $v; + + } + + $profile = array(); + $r = q("SELECT * FROM `profile` WHERE `uid` = %d ", + local_user() + ); + if(count($r)) { + foreach($r as $rr) + foreach($rr as $k => $v) + $profile[][$k] = $v; + } + + + + $output = array('user' => $user, 'contact' => $contact, 'profile' => $profile); + + header("Content-type: text/json"); + echo str_replace('\\/','/',json_encode($output)); + + killme(); + +}
\ No newline at end of file |