mirror of
https://github.com/friendica/friendica
synced 2025-04-22 09:10:10 +00:00
add mention-/showgroup button also to profile/vcard.tpl
update translations
This commit is contained in:
parent
02b26f5969
commit
c6af5266cd
3 changed files with 29 additions and 10 deletions
|
@ -453,6 +453,18 @@ class Profile
|
|||
Logger::warning('Missing hidewall key in profile array', ['profile' => $profile, 'callstack' => System::callstack(10)]);
|
||||
}
|
||||
|
||||
if ($profile['account-type'] == Contact::TYPE_COMMUNITY) {
|
||||
$mention_label = DI::l10n()->t('Post to group');
|
||||
$mention_url = 'compose/0?body=!' . $profile['addr'];
|
||||
$network_label = DI::l10n()->t('View group');
|
||||
$network_url = 'network/group/' . $profile['id'];
|
||||
} else {
|
||||
$mention_label = DI::l10n()->t('Mention');
|
||||
$mention_url = 'compose/0?body=@' . $profile['addr'];
|
||||
$network_label = DI::l10n()->t('Network Posts');
|
||||
$network_url = 'contact/' . $profile['id'] . '/conversations';
|
||||
}
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
|
||||
$o .= Renderer::replaceMacros($tpl, [
|
||||
'$profile' => $p,
|
||||
|
@ -476,6 +488,10 @@ class Profile
|
|||
'$updated' => $updated,
|
||||
'$diaspora' => $diaspora,
|
||||
'$contact_block' => $contact_block,
|
||||
'$mention_label' => $mention_label,
|
||||
'$mention_url' => $mention_url,
|
||||
'$network_label' => $network_label,
|
||||
'$network_url' => $network_url,
|
||||
]);
|
||||
|
||||
$arr = ['profile' => &$profile, 'entry' => &$o];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue