diff options
author | friendica <info@friendica.com> | 2014-08-04 16:47:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-04 16:48:40 -0700 |
commit | 00fc23bf4e169b4a48ae0bafae12cc3946b38cd6 (patch) | |
tree | a6353842e1cb0785e36483a41647d1500a5a5318 /include/identity.php | |
parent | a0695fa04fdc73a20beb216060573e1204950df6 (diff) | |
download | volse-hubzilla-00fc23bf4e169b4a48ae0bafae12cc3946b38cd6.tar.gz volse-hubzilla-00fc23bf4e169b4a48ae0bafae12cc3946b38cd6.tar.bz2 volse-hubzilla-00fc23bf4e169b4a48ae0bafae12cc3946b38cd6.zip |
issue #551 provide import/export of profiles (if this feature is enabled)
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/include/identity.php b/include/identity.php index feb249ea3..643961465 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1313,12 +1313,12 @@ function is_public_profile() { return false; } -function get_profile_fields_basic() { - $profile_fields_basic = get_config('system','profile_fields_basic'); +function get_profile_fields_basic($filter = 0) { + + $profile_fields_basic = (($filter == 0) ? get_config('system','profile_fields_basic') : null); if(! $profile_fields_basic) - $profile_fields_basic = array('name','pdesc','gender','dob','address','locality','region','postal_code','country_name','marital','sexual','homepage','hometown','keywords','about','contact'); + $profile_fields_basic = array('name','pdesc','chandesc','gender','dob','dob_tz','address','locality','region','postal_code','country_name','marital','sexual','homepage','hometown','keywords','about','contact'); -// return $profile_fields_basic; $x = array(); if($profile_fields_basic) foreach($profile_fields_basic as $f) @@ -1329,14 +1329,12 @@ function get_profile_fields_basic() { } -function get_profile_fields_advanced() { - $basic = get_profile_fields_basic(); - $profile_fields_advanced = get_config('system','profile_fields_advanced'); +function get_profile_fields_advanced($filter = 0) { + $basic = get_profile_fields_basic($filter); + $profile_fields_advanced = (($filter == 0) ? get_config('system','profile_fields_advanced') : null); if(! $profile_fields_advanced) $profile_fields_advanced = array('with','howlong','politic','religion','likes','dislikes','interest','channels','music','book','film','tv','romance','work','education'); -// return $profile_fields_advanced; - $x = array(); if($basic) foreach($basic as $f => $v) |