mirror of
https://github.com/friendica/friendica
synced 2024-11-17 23:43:40 +00:00
add "Show Forum" Button to Profile
This commit is contained in:
parent
ad414f33c9
commit
e6a4467557
2 changed files with 24 additions and 0 deletions
|
@ -68,6 +68,7 @@ class VCard
|
||||||
$follow_link = '';
|
$follow_link = '';
|
||||||
$unfollow_link = '';
|
$unfollow_link = '';
|
||||||
$wallmessage_link = '';
|
$wallmessage_link = '';
|
||||||
|
$showforum_link = '';
|
||||||
|
|
||||||
$photo = Contact::getPhoto($contact);
|
$photo = Contact::getPhoto($contact);
|
||||||
|
|
||||||
|
@ -99,6 +100,10 @@ class VCard
|
||||||
if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) {
|
if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) {
|
||||||
$wallmessage_link = 'message/new/' . $id;
|
$wallmessage_link = 'message/new/' . $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (in_array($rel, [Contact::SHARING])) {
|
||||||
|
$showforum_link = 'network/group/' . $id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
|
||||||
|
@ -119,6 +124,9 @@ class VCard
|
||||||
'$unfollow_link' => $unfollow_link,
|
'$unfollow_link' => $unfollow_link,
|
||||||
'$wallmessage' => DI::l10n()->t('Message'),
|
'$wallmessage' => DI::l10n()->t('Message'),
|
||||||
'$wallmessage_link' => $wallmessage_link,
|
'$wallmessage_link' => $wallmessage_link,
|
||||||
|
'$showforum' => DI::l10n()->t('Show Forum'),
|
||||||
|
'$showforum_link' => $showforum_link,
|
||||||
|
'$mentioning' => DI::l10n()->t('Mention'),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,22 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{if $contact.addr}}
|
||||||
|
<div id="mention-link-button">
|
||||||
|
<button type="button" id="mention-link" class="btn btn-labeled btn-primary{{if !$always_open_compose}} modal-open{{/if}}" onclick="openWallMessage('compose/0?body={{if $contact.forum==1}}!{{else}}@{{/if}}{{$contact.addr}}')">
|
||||||
|
<span class=""><i class="fa fa-pencil-square-o"></i></span>
|
||||||
|
<span class="">{{$mentioning}}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
{{if $contact.forum==1 || $contact.prv==1}}
|
||||||
|
<div id="mention-link-button">
|
||||||
|
<button type="button" id="mention-link" class="btn btn-labeled btn-primary{{if !$always_open_compose}} modal-open{{/if}}" onclick="window.location.href='{{$showforum_link}}'">
|
||||||
|
<span class=""><i class="fa fa-group"></i></span>
|
||||||
|
<span class="">{{$showforum}}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
|
Loading…
Reference in a new issue