]> git.mxchange.org Git - friendica.git/blob - src/Module/BaseProfile.php
e84ebded101c4f8fcd454ab6d0022d6a1659c03e
[friendica.git] / src / Module / BaseProfile.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Renderer;
28 use Friendica\DI;
29
30 class BaseProfile extends BaseModule
31 {
32         /**
33          * Returns the HTML for the profile pages tabs
34          *
35          * @param App    $a
36          * @param string $current
37          * @param bool   $is_owner
38          * @param string $nickname
39          * @return string
40          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
41          */
42         public static function getTabsHTML(App $a, string $current, bool $is_owner, array $profile)
43         {
44                 $nickname = $profile['nickname'];
45
46                 $baseProfileUrl = DI::baseUrl() . '/profile/' . $nickname;
47
48                 $tabs = [
49                         [
50                                 'label' => DI::l10n()->t('Profile'),
51                                 'url'   => $baseProfileUrl . '/profile',
52                                 'sel'   => $current == 'profile' ? 'active' : '',
53                                 'title' => DI::l10n()->t('Profile Details'),
54                                 'id'    => 'profile-tab',
55                                 'accesskey' => 'r',
56                         ],
57                         [
58                                 'label' => DI::l10n()->t('Status'),
59                                 'url'   => $baseProfileUrl . '/status',
60                                 'sel'   => $current == 'status' ? 'active' : '',
61                                 'title' => DI::l10n()->t('Status Messages and Posts'),
62                                 'id'    => 'status-tab',
63                                 'accesskey' => 'm',
64                         ],
65                         [
66                                 'label' => DI::l10n()->t('Photos'),
67                                 'url'   => DI::baseUrl() . '/photos/' . $nickname,
68                                 'sel'   => $current == 'photos' ? 'active' : '',
69                                 'title' => DI::l10n()->t('Photo Albums'),
70                                 'id'    => 'photo-tab',
71                                 'accesskey' => 'h',
72                         ],
73                         [
74                                 'label' => DI::l10n()->t('Videos'),
75                                 'url'   => DI::baseUrl() . '/videos/' . $nickname,
76                                 'sel'   => $current == 'videos' ? 'active' : '',
77                                 'title' => DI::l10n()->t('Videos'),
78                                 'id'    => 'video-tab',
79                                 'accesskey' => 'v',
80                         ],
81                 ];
82
83                 // the calendar link for the full featured events calendar
84                 if ($is_owner && $a->theme_events_in_profile) {
85                         $tabs[] = [
86                                 'label' => DI::l10n()->t('Events'),
87                                 'url'   => DI::baseUrl() . '/events',
88                                 'sel'   => $current == 'events' ? 'active' : '',
89                                 'title' => DI::l10n()->t('Events and Calendar'),
90                                 'id'    => 'events-tab',
91                                 'accesskey' => 'e',
92                         ];
93                         // if the user is not the owner of the calendar we only show a calendar
94                         // with the public events of the calendar owner
95                 } elseif (!$is_owner) {
96                         $tabs[] = [
97                                 'label' => DI::l10n()->t('Events'),
98                                 'url'   => DI::baseUrl() . '/cal/' . $nickname,
99                                 'sel'   => $current == 'cal' ? 'active' : '',
100                                 'title' => DI::l10n()->t('Events and Calendar'),
101                                 'id'    => 'events-tab',
102                                 'accesskey' => 'e',
103                         ];
104                 }
105
106                 if ($is_owner) {
107                         $tabs[] = [
108                                 'label' => DI::l10n()->t('Personal Notes'),
109                                 'url'   => DI::baseUrl() . '/notes',
110                                 'sel'   => $current == 'notes' ? 'active' : '',
111                                 'title' => DI::l10n()->t('Only You Can See This'),
112                                 'id'    => 'notes-tab',
113                                 'accesskey' => 't',
114                         ];
115                 }
116
117                 if (empty($profile['hide-friends'])) {
118                         $tabs[] = [
119                                 'label' => DI::l10n()->t('Contacts'),
120                                 'url'   => $baseProfileUrl . '/contacts',
121                                 'sel'   => $current == 'contacts' ? 'active' : '',
122                                 'title' => DI::l10n()->t('Contacts'),
123                                 'id'    => 'viewcontacts-tab',
124                                 'accesskey' => 'k',
125                         ];
126                 }
127
128                 if (DI::session()->get('new_member') && $is_owner) {
129                         $tabs[] = [
130                                 'label' => DI::l10n()->t('Tips for New Members'),
131                                 'url'   => DI::baseUrl() . '/newmember',
132                                 'sel'   => false,
133                                 'title' => DI::l10n()->t('Tips for New Members'),
134                                 'id'    => 'newmember-tab',
135                         ];
136                 }
137
138                 $arr = ['is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => $current, 'tabs' => $tabs];
139
140                 Hook::callAll('profile_tabs', $arr);
141
142                 $tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
143
144                 return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
145         }
146 }