]> git.mxchange.org Git - friendica.git/commitdiff
show "view group" in hovercard
authorJakobus Schürz (admin) <adminjs@schuerz.at>
Sun, 1 Oct 2023 12:25:23 +0000 (14:25 +0200)
committerJakobus Schürz (admin) <adminjs@schuerz.at>
Sun, 1 Oct 2023 12:25:23 +0000 (14:25 +0200)
but only on group-contacts.
rename all *forum to *group in code

src/Content/Widget/VCard.php
src/Model/Contact.php
view/templates/hovercard.tpl
view/theme/frio/templates/widget/vcard.tpl

index 8a949e9360b9651fb241d3f4d2bcd729db9928f0..3e4f1e1d875dc00d0a84c60f8504f0b8e14878d0 100644 (file)
@@ -68,7 +68,7 @@ class VCard
                $follow_link      = '';
                $unfollow_link    = '';
                $wallmessage_link = '';
-               $showforum_link   = '';
+               $showgroup_link   = '';
 
                $photo   = Contact::getPhoto($contact);
 
@@ -102,7 +102,7 @@ class VCard
                        }
 
                        if (in_array($rel, [Contact::SHARING])) {
-                               $showforum_link = 'network/group/' . $id;
+                               $showgroup_link = 'network/group/' . $id;
                        }
                }
 
@@ -124,8 +124,8 @@ class VCard
                        '$unfollow_link'    => $unfollow_link,
                        '$wallmessage'      => DI::l10n()->t('Message'),
                        '$wallmessage_link' => $wallmessage_link,
-                       '$showforum'        => DI::l10n()->t('Show Forum'),
-                       '$showforum_link'   => $showforum_link,
+                       '$showgroup'        => DI::l10n()->t('Show group'),
+                       '$showgroup_link'   => $showgroup_link,
                        '$mentioning'       => DI::l10n()->t('Mention'),
                ]);
        }
index 243b48ad1d2124c6c08724f41f21bbdf1fe293f9..d9f870f561d8216f4dd2f2289dc095f845bc32ee 100644 (file)
@@ -1199,6 +1199,7 @@ class Contact
 
                $contact_url = 'contact/' . $contact['id'];
                $posts_link = 'contact/' . $contact['id'] . '/conversations';
+               $group_link = 'network/group/' . $contact['id'];
 
                $follow_link   = '';
                $unfollow_link = '';
@@ -1232,6 +1233,7 @@ class Contact
                                'pm'       => [DI::l10n()->t('Send PM'), $pm_url, false],
                                'follow'   => [DI::l10n()->t('Connect/Follow'), $follow_link, true],
                                'unfollow' => [DI::l10n()->t('Unfollow'), $unfollow_link, true],
+                               'group'    => [DI::l10n()->t('View group'), $group_link, $contact['forum'], true],
                        ];
 
                        if (!empty($contact['pending'])) {
index 563a5a248e25e1989fbf1decf4192598231141c9..a820e5c550c1db923da7f35c9d43de6274236cd0 100644 (file)
@@ -24,6 +24,7 @@
                                        {{if $profile.actions.pm}}<a class="btn btn-labeled btn-primary btn-sm add-to-modal" href="{{$profile.actions.pm.1}}" aria-label="{{$profile.actions.pm.0}}"><i class="fa fa-envelope" aria-hidden="true" title="{{$profile.actions.pm.0}}"></i><span class="sr-only">{{$profile.actions.pm.0}}</span></a>{{/if}}
                                </div>
                                <div class="hover-card-actions-connection">
+                                       {{if $profile.actions.group.2==1}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.group.1}}" aria-label="{{$profile.actions.group.0}}" title="{{$profile.actions.group.0}}"><i class="fa fa-group" aria-hidden="true"></i></a>{{/if}}
                                        {{if $profile.actions.network}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.network.1}}" aria-label="{{$profile.actions.network.0}}" title="{{$profile.actions.network.0}}"><i class="fa fa-cloud" aria-hidden="true"></i></a>{{/if}}
                                        {{if $profile.actions.edit}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.edit.1}}" aria-label="{{$profile.actions.edit.0}}" title="{{$profile.actions.edit.0}}"><i class="fa fa-user" aria-hidden="true"></i></a>{{/if}}
                                        {{if $profile.actions.follow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.follow.1}}" aria-label="{{$profile.actions.follow.0}}" title="{{$profile.actions.follow.0}}"><i class="fa fa-user-plus" aria-hidden="true"></i></a>{{/if}}
index 8ae0a1d1cdde05b4f695acc9e4e67cd2c721288f..41c48aa3905af6202b46587b41585eb33c3b9e1a 100644 (file)
                                        </button>
                                </div>
                        {{/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}}'">
+                               <div id="show-group-button">
+                                       <button type="button" id="show-group" class="btn btn-labeled btn-primary{{if !$always_open_compose}} modal-open{{/if}}" onclick="window.location.href='{{$showgroup_link}}'">
                                                <span class=""><i class="fa fa-group"></i></span>
-                                               <span class="">{{$showforum}}</span>
+                                               <span class="">{{$showgroup}}</span>
                                        </button>
                                </div>
                         {{/if}}