]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/BaseProfile.php
Merge pull request #11360 from annando/announce-notification
[friendica.git] / src / Module / BaseProfile.php
index e84ebded101c4f8fcd454ab6d0022d6a1659c03e..3937fa07d2ee2b2da5b801882caeec47b3c708d0 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -39,10 +39,8 @@ class BaseProfile extends BaseModule
         * @return string
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function getTabsHTML(App $a, string $current, bool $is_owner, array $profile)
+       public static function getTabsHTML(App $a, string $current, bool $is_owner, string $nickname, bool $hide_friends)
        {
-               $nickname = $profile['nickname'];
-
                $baseProfileUrl = DI::baseUrl() . '/profile/' . $nickname;
 
                $tabs = [
@@ -71,17 +69,17 @@ class BaseProfile extends BaseModule
                                'accesskey' => 'h',
                        ],
                        [
-                               'label' => DI::l10n()->t('Videos'),
-                               'url'   => DI::baseUrl() . '/videos/' . $nickname,
-                               'sel'   => $current == 'videos' ? 'active' : '',
-                               'title' => DI::l10n()->t('Videos'),
-                               'id'    => 'video-tab',
-                               'accesskey' => 'v',
+                               'label' => DI::l10n()->t('Media'),
+                               'url'   => $baseProfileUrl . '/media',
+                               'sel'   => $current == 'media' ? 'active' : '',
+                               'title' => DI::l10n()->t('Media'),
+                               'id'    => 'media-tab',
+                               'accesskey' => 'd',
                        ],
                ];
 
                // the calendar link for the full featured events calendar
-               if ($is_owner && $a->theme_events_in_profile) {
+               if ($is_owner && $a->getThemeInfoValue('events_in_profile')) {
                        $tabs[] = [
                                'label' => DI::l10n()->t('Events'),
                                'url'   => DI::baseUrl() . '/events',
@@ -112,9 +110,17 @@ class BaseProfile extends BaseModule
                                'id'    => 'notes-tab',
                                'accesskey' => 't',
                        ];
+                       $tabs[] = [
+                               'label' => DI::l10n()->t('Scheduled Posts'),
+                               'url'   => $baseProfileUrl . '/schedule',
+                               'sel'   => $current == 'schedule' ? 'active' : '',
+                               'title' => DI::l10n()->t('Posts that are scheduled for publishing'),
+                               'id'    => 'schedule-tab',
+                               'accesskey' => 'o',
+                       ];
                }
 
-               if (empty($profile['hide-friends'])) {
+               if (!$hide_friends) {
                        $tabs[] = [
                                'label' => DI::l10n()->t('Contacts'),
                                'url'   => $baseProfileUrl . '/contacts',