$pm_url = 'message/new/' . $contact['id'];
}
- if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
- $mention_label = DI::l10n()->t('Post to group');
- $mention_url = 'compose/0?body=!' . $contact['addr'];
- } else {
- $mention_label = DI::l10n()->t('Mention');
- $mention_url = 'compose/0?body=@' . $contact['addr'];
- }
-
$contact_url = 'contact/' . $contact['id'];
if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
+ $mention_label = DI::l10n()->t('Post to group');
+ $mention_url = 'compose/0?body=!' . $contact['addr'];
$network_label = DI::l10n()->t('View group');
$network_url = 'network/group/' . $contact['id'];
} else {
+ $mention_label = DI::l10n()->t('Mention');
+ $mention_url = 'compose/0?body=@' . $contact['addr'];
$network_label = DI::l10n()->t('Network Posts');
$network_url = 'contact/' . $contact['id'] . '/conversations';
}
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,
'$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];
{{/if}}
{{if $profile.addr}}
<div id="mention-link-button">
- <button type="button" id="mention-link" class="btn btn-labeled btn-primary" onclick="openWallMessage('compose/0?body={{if $profile.forum==1}}!{{else}}@{{/if}}{{$profile.addr}}')">
+ <button type="button" id="mention-link" class="btn btn-labeled btn-primary" onclick="openWallMessage('{{$mention_url}}')">
<span class=""><i class="fa fa-pencil-square-o"></i></span>
- <span class="">{{$mention}}</span>
+ <span class="">{{$mention_label}}</span>
+ </div>
+ {{/if}}
+ {{if $network_label}}
+ <div id="showgroup-button">
+ <button type="button" id="showgroup" class="btn btn-labeled btn-primary" onclick="window.location.href=('{{$network_url}}')">
+ <span class=""><i class="fa fa-group"></i></span>
+ <span class="">{{$network_label}}</span>
</div>
{{/if}}
</div>