Remove unused Module\Directory::init method
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 15 Jun 2019 12:44:36 +0000 (08:44 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 15 Jun 2019 12:44:36 +0000 (08:44 -0400)
src/Module/Directory.php

index cdf43b8..667f086 100644 (file)
@@ -20,9 +20,15 @@ use Friendica\Util\Strings;
  */
 class Directory extends BaseModule
 {
-       public static function init()
+       public static function content()
        {
                $app = self::getApp();
+               $config = $app->getConfig();
+
+               if (($config->get('system', 'block_public') && !local_user() && !remote_user()) ||
+                       ($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) {
+                       throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
+               }
 
                if (local_user()) {
                        $app->page['aside'] .= Widget::findPeople();
@@ -31,17 +37,6 @@ class Directory extends BaseModule
                        unset($_SESSION['theme']);
                        unset($_SESSION['mobile-theme']);
                }
-       }
-
-       public static function content()
-       {
-               $app = self::getApp();
-               $config = $app->getConfig();
-
-               if (($config->get('system', 'block_public') && !local_user() && !remote_user()) ||
-                       ($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) {
-                       throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
-               }
 
                $output = '';
                $entries = [];
@@ -157,7 +152,7 @@ class Directory extends BaseModule
 
                $entry = [
                        'id'           => $contact['id'],
-                       'url'          => Contact::magicLInk($profile_link),
+                       'url'          => Contact::magicLink($profile_link),
                        'itemurl'      => $itemurl,
                        'thumb'        => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
                        'img_hover'    => $contact['name'],