]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/ContactSelector.php
Continued:
[friendica.git] / src / Content / ContactSelector.php
index db7ad80ca638664dc50615a11e3736a8d04710a3..1568e3a2fd3917c21974ed283ff2106a44d115b6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -140,6 +140,8 @@ class ContactSelector
                        Protocol::STATUSNET =>   DI::l10n()->t('GNU Social Connector'),
                        Protocol::ACTIVITYPUB => DI::l10n()->t('ActivityPub'),
                        Protocol::PNUT      =>   DI::l10n()->t('pnut'),
+                       Protocol::TUMBLR    =>   DI::l10n()->t('Tumblr'),
+                       Protocol::BLUESKY   =>   DI::l10n()->t('Bluesky'),
                ];
 
                Hook::callAll('network_to_name', $nets);
@@ -210,13 +212,17 @@ class ContactSelector
                        Protocol::STATUSNET =>   'gnu-social',
                        Protocol::ACTIVITYPUB => 'activitypub',
                        Protocol::PNUT      =>   'file-text-o', /// @todo
+                       Protocol::TUMBLR    =>   'tumblr',
+                       Protocol::BLUESKY   =>   'circle', /// @todo
                ];
 
                $platform_icons = ['diaspora' => 'diaspora', 'friendica' => 'friendica', 'friendika' => 'friendica',
                        'GNU Social' => 'gnu-social', 'gnusocial' => 'gnu-social', 'hubzilla' => 'hubzilla',
                        'mastodon' => 'mastodon', 'peertube' => 'peertube', 'pixelfed' => 'pixelfed',
                        'pleroma' => 'pleroma', 'red' => 'hubzilla', 'redmatrix' => 'hubzilla',
-                       'socialhome' => 'social-home', 'wordpress' => 'wordpress'];
+                       'socialhome' => 'social-home', 'wordpress' => 'wordpress', 'lemmy' => 'users',
+                       'plume' => 'plume', 'funkwhale' => 'funkwhale', 'nextcloud' => 'nextcloud', 'drupal' => 'drupal',
+                       'firefish' => 'fire', 'calckey' => 'calculator', 'kbin' => 'check', 'threads' => 'instagram'];
 
                $search  = array_keys($nets);
                $replace = array_values($nets);