]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/ForumManager.php
Merge pull request #8134 from nupplaphil/task/di_l10n
[friendica.git] / src / Content / ForumManager.php
index 6d1d330c35af13ab36fb0fb766db6691b9342793..f3f3392ec189c907ef77be4cd3f8723c70dca2a7 100644 (file)
@@ -1,13 +1,12 @@
 <?php
 /**
  * @file src/Content/ForumManager.php
- * @brief ForumManager class with its methods related to forum functionality
+ * ForumManager class with its methods related to forum functionality
  */
 namespace Friendica\Content;
 
 use Friendica\Core\Protocol;
 use Friendica\Content\Text\HTML;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\Database\DBA;
 use Friendica\DI;
@@ -15,12 +14,12 @@ use Friendica\Model\Contact;
 use Friendica\Util\Proxy as ProxyUtils;
 
 /**
- * @brief This class handles methods related to the forum functionality
+ * This class handles methods related to the forum functionality
  */
 class ForumManager
 {
        /**
-        * @brief Function to list all forums a user is connected with
+        * Function to list all forums a user is connected with
         *
         * @param int     $uid         of the profile owner
         * @param boolean $lastitem    Sort by lastitem
@@ -80,7 +79,7 @@ class ForumManager
 
 
        /**
-        * @brief Forumlist widget
+        * Forumlist widget
         *
         * Sidebar widget to show subcribed friendica forums. If activated
         * in the settings, it appears at the notwork page sidebar
@@ -127,12 +126,12 @@ class ForumManager
                        $o .= Renderer::replaceMacros(
                                $tpl,
                                [
-                                       '$title'        => L10n::t('Forums'),
+                                       '$title'        => DI::l10n()->t('Forums'),
                                        '$forums'       => $entries,
-                                       '$link_desc'    => L10n::t('External link to forum'),
+                                       '$link_desc'    => DI::l10n()->t('External link to forum'),
                                        '$total'        => $total,
                                        '$visible_forums' => $visible_forums,
-                                       '$showmore'     => L10n::t('show more')]
+                                       '$showmore'     => DI::l10n()->t('show more')]
                        );
                }
 
@@ -140,7 +139,7 @@ class ForumManager
        }
 
        /**
-        * @brief Format forumlist as contact block
+        * Format forumlist as contact block
         *
         * This function is used to show the forumlist in
         * the advanced profile.
@@ -184,7 +183,7 @@ class ForumManager
        }
 
        /**
-        * @brief count unread forum items
+        * count unread forum items
         *
         * Count unread items of connected forums and private groups
         *