From ca17fb01bc24f27e2229557e59977702f43619f4 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 25 Nov 2021 07:54:53 +0000 Subject: profile cleanup and fixes --- Zotlabs/Widget/Fullprofile.php | 2 +- Zotlabs/Widget/Profile.php | 4 +- include/channel.php | 7 +- view/css/mod_profile_photo.css | 8 -- view/theme/redbasic/css/style.css | 9 -- view/tpl/profile_vcard.tpl | 204 ++++++++++++++++---------------------- 6 files changed, 94 insertions(+), 140 deletions(-) diff --git a/Zotlabs/Widget/Fullprofile.php b/Zotlabs/Widget/Fullprofile.php index d7340ef40..e8ed13811 100644 --- a/Zotlabs/Widget/Fullprofile.php +++ b/Zotlabs/Widget/Fullprofile.php @@ -11,6 +11,6 @@ class Fullprofile { $block = observer_prohibited(); - return profile_sidebar(\App::$profile, $block); + return profile_sidebar(\App::$profile, $block, true, true); } } diff --git a/Zotlabs/Widget/Profile.php b/Zotlabs/Widget/Profile.php index bffd910b6..8bd624c0f 100644 --- a/Zotlabs/Widget/Profile.php +++ b/Zotlabs/Widget/Profile.php @@ -7,7 +7,7 @@ class Profile { function widget($args) { $block = observer_prohibited(); - return profile_sidebar(\App::$profile, $block, true); + return profile_sidebar(\App::$profile, $block, true, false); } -} \ No newline at end of file +} diff --git a/include/channel.php b/include/channel.php index 927da3dcd..102a03489 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1566,7 +1566,7 @@ function profile_edit_menu($uid) { * @return string (HTML) suitable for sidebar inclusion * Exceptions: Returns empty string if passed $profile is wrong type or not populated */ -function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = false) { +function profile_sidebar($profile, $block = 0, $show_connect = true, $details = false) { $observer = App::get_observer(); @@ -1622,6 +1622,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); + $hometown = ((x($profile,'hometown') == 1) ? t('Hometown:') : False); $profile['online'] = (($profile['online_status'] === 'online') ? t('Online Now') : False); // logger('online: ' . $profile['online']); @@ -1662,18 +1663,18 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa $tpl = get_markup_template('profile_vcard.tpl'); $o .= replace_macros($tpl, array( - '$zcard' => $zcard, + '$details' => $details, '$profile' => $profile, '$connect' => $connect, '$connect_url' => $connect_url, '$location' => $location, + '$hometown' => $hometown, '$gender' => $gender, '$pdesc' => $pdesc, '$marital' => $marital, '$homepage' => $homepage, '$chanmenu' => $channel_menu, '$reddress' => $reddress, - '$rating' => '', '$contact_block' => $contact_block, '$change_photo' => t('Change your profile photo'), '$editmenu' => profile_edit_menu($profile['uid']) diff --git a/view/css/mod_profile_photo.css b/view/css/mod_profile_photo.css index 1b7e15194..98fdd4e91 100644 --- a/view/css/mod_profile_photo.css +++ b/view/css/mod_profile_photo.css @@ -10,11 +10,3 @@ #profile-photo-submit-wrapper { clear: both; } - -#profile-photo-wrapper { - height: 300px; - width: 300px; - max-width: 300px; - max-height: 300px; - overflow: hidden; -} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index aad17698b..16a7624f8 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -421,15 +421,6 @@ footer { #profile-photo-wrapper img { width: 100%; height: 100%; - max-width: 300px; - max-height: 300px; -} - -#profile-photo-wrapper { - width: 251px; - height: 251px; - margin-bottom: 10px; - border-radius: $radius; } #hide-friends-yes-label, diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index 487fa3959..8ebc9a311 100644 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -1,137 +1,107 @@ -{{if !$zcard}} -
-
-
- -
- {{if $editmenu.multi}} - - -{{/if}} - -{{if $zcard}} -
- {{if $connect}} -
{{$connect}} - {{/if}} - {{if $reddress}}
{{$profile.reddress}}
{{/if}} - - {{if $pdesc}}
{{$profile.pdesc}}
{{/if}} - {{if $location}} -
+ {{if $details}} +
+ {{if $profile.pdesc}} +
{{$profile.pdesc}}
+ {{/if}} + {{if $location}} +
{{$location}}
- {{if $profile.address}}
{{$profile.address}}
{{/if}} - - {{$profile.locality}}{{if $profile.locality}}, {{/if}} - {{$profile.region}} + {{if $profile.address}} +
{{$profile.address}}
+ {{/if}} +
{{$profile.postal_code}} - - {{if $profile.country_name}}{{$profile.country_name}}{{/if}} + {{$profile.locality}} +
+ {{if $profile.region}} +
{{$profile.region}}
+ {{/if}} + {{if $profile.country_name}} +
{{$profile.country_name}}
+ {{/if}}
- {{/if}} - - {{if $gender}} -
+ {{/if}} + {{if $hometown}} +
+
{{$hometown}}
+
{{$profile.hometown}}
+
+ {{/if}} + {{if $gender}} +
{{$gender}}
{{if $profile.gender_icon}} {{/if}}{{$profile.gender}}
+ {{/if}} + {{if $marital}} +
+
 {{$marital}}
+
{{$profile.marital}}
+
+ {{/if}} + {{if $homepage}} +
+
{{$homepage}}
+
{{$profile.homepage}}
+
+ {{/if}} +
+
{{/if}} - - {{if $marital}}
 {{$marital}}
{{$profile.marital}}
{{/if}} - - {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} - -
-{{/if}} - -
- +{{if $details}} {{$chanmenu}} {{$contact_block}} +{{/if}} -- cgit v1.2.3