Merge branch 'feature/edit-profile-improvements' into develop
This commit is contained in:
commit
992684c362
|
@ -79,10 +79,13 @@ function advanced_profile(&$a) {
|
||||||
if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
|
if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
|
||||||
|
|
||||||
if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
|
if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
|
||||||
|
|
||||||
|
if ($a->profile['uid'] == local_user())
|
||||||
|
$profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));
|
||||||
|
|
||||||
return replace_macros($tpl, array(
|
return replace_macros($tpl, array(
|
||||||
'$title' => t('Profile'),
|
'$title' => t('Profile'),
|
||||||
'$profile' => $profile,
|
'$profile' => $profile
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -137,6 +137,8 @@ function profiles_init(&$a) {
|
||||||
|
|
||||||
profile_load($a,$a->user['nickname'],$r[0]['id']);
|
profile_load($a,$a->user['nickname'],$r[0]['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -636,6 +638,7 @@ function profiles_content(&$a) {
|
||||||
$o .= replace_macros($tpl,array(
|
$o .= replace_macros($tpl,array(
|
||||||
'$multi_profiles' => feature_enabled(local_user(),'multi_profiles'),
|
'$multi_profiles' => feature_enabled(local_user(),'multi_profiles'),
|
||||||
'$form_security_token' => get_form_security_token("profile_edit"),
|
'$form_security_token' => get_form_security_token("profile_edit"),
|
||||||
|
'$form_security_token_photo' => get_form_security_token("profile_photo"),
|
||||||
'$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
|
'$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
|
||||||
'$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
|
'$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
|
||||||
'$banner' => t('Edit Profile Details'),
|
'$banner' => t('Edit Profile Details'),
|
||||||
|
@ -645,6 +648,14 @@ function profiles_content(&$a) {
|
||||||
'$cr_prof' => t('Create a new profile using these settings'),
|
'$cr_prof' => t('Create a new profile using these settings'),
|
||||||
'$cl_prof' => t('Clone this profile'),
|
'$cl_prof' => t('Clone this profile'),
|
||||||
'$del_prof' => t('Delete this profile'),
|
'$del_prof' => t('Delete this profile'),
|
||||||
|
'$lbl_basic_section' => t('Basic information'),
|
||||||
|
'$lbl_picture_section' => t('Profile picture'),
|
||||||
|
'$lbl_location_section' => t('Location'),
|
||||||
|
'$lbl_preferences_section' => t('Preferences'),
|
||||||
|
'$lbl_status_section' => t('Status information'),
|
||||||
|
'$lbl_about_section' => t('Additional information'),
|
||||||
|
'$lbl_interests_section' => t('Interests'),
|
||||||
|
'$lbl_profile_photo' => t('Upload Profile Photo'),
|
||||||
'$lbl_profname' => t('Profile Name:'),
|
'$lbl_profname' => t('Profile Name:'),
|
||||||
'$lbl_fullname' => t('Your Full Name:'),
|
'$lbl_fullname' => t('Your Full Name:'),
|
||||||
'$lbl_title' => t('Title/Description:'),
|
'$lbl_title' => t('Title/Description:'),
|
||||||
|
@ -726,12 +737,26 @@ function profiles_content(&$a) {
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Profiles list.
|
||||||
else {
|
else {
|
||||||
|
|
||||||
|
//If we don't support multi profiles, don't display this list.
|
||||||
|
if(!feature_enabled(local_user(),'multi_profiles')){
|
||||||
|
$r = q(
|
||||||
|
"SELECT * FROM `profile` WHERE `uid` = %d AND `is-default`=1",
|
||||||
|
local_user()
|
||||||
|
);
|
||||||
|
if(count($r)){
|
||||||
|
//Go to the default profile.
|
||||||
|
goaway($a->get_baseurl(true) . '/profiles/'.$r[0]['id']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
|
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
|
||||||
local_user());
|
local_user());
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
|
|
||||||
$tpl_header = get_markup_template('profile_listing_header.tpl');
|
$tpl_header = get_markup_template('profile_listing_header.tpl');
|
||||||
$o .= replace_macros($tpl_header,array(
|
$o .= replace_macros($tpl_header,array(
|
||||||
'$header' => t('Edit/Manage Profiles'),
|
'$header' => t('Edit/Manage Profiles'),
|
||||||
|
@ -739,10 +764,10 @@ function profiles_content(&$a) {
|
||||||
'$cr_new' => t('Create New Profile'),
|
'$cr_new' => t('Create New Profile'),
|
||||||
'$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
|
'$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
$tpl = get_markup_template('profile_entry.tpl');
|
$tpl = get_markup_template('profile_entry.tpl');
|
||||||
|
|
||||||
foreach($r as $rr) {
|
foreach($r as $rr) {
|
||||||
$o .= replace_macros($tpl, array(
|
$o .= replace_macros($tpl, array(
|
||||||
'$photo' => $a->get_cached_avatar_image($rr['thumb']),
|
'$photo' => $a->get_cached_avatar_image($rr['thumb']),
|
||||||
|
|
Loading…
Reference in a new issue