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/settings.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/settings.php')
-rw-r--r-- | mod/settings.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/settings.php b/mod/settings.php index 6a2733d7c..b20f4d11b 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -5,6 +5,7 @@ function settings_init(&$a) { if(local_user()) { profile_load($a,$a->user['nickname']); } + } @@ -341,9 +342,13 @@ function settings_content(&$a) { $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false); + $uexport = '<div id="uexport-link"><a href="uexport" >' . t('Export Personal Data') . '</a></div>'; + + $o .= replace_macros($stpl,array( '$baseurl' => $a->get_baseurl(), '$oidhtml' => $oidhtml, + '$uexport' => $uexport, '$uid' => local_user(), '$username' => $username, '$openid' => $openid, |