mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Remove unused Module\Directory::init method
This commit is contained in:
parent
097ecdd106
commit
68c65af046
1 changed files with 9 additions and 14 deletions
|
@ -20,19 +20,6 @@ use Friendica\Util\Strings;
|
|||
*/
|
||||
class Directory extends BaseModule
|
||||
{
|
||||
public static function init()
|
||||
{
|
||||
$app = self::getApp();
|
||||
|
||||
if (local_user()) {
|
||||
$app->page['aside'] .= Widget::findPeople();
|
||||
$app->page['aside'] .= Widget::follow();
|
||||
} else {
|
||||
unset($_SESSION['theme']);
|
||||
unset($_SESSION['mobile-theme']);
|
||||
}
|
||||
}
|
||||
|
||||
public static function content()
|
||||
{
|
||||
$app = self::getApp();
|
||||
|
@ -43,6 +30,14 @@ class Directory extends BaseModule
|
|||
throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
|
||||
}
|
||||
|
||||
if (local_user()) {
|
||||
$app->page['aside'] .= Widget::findPeople();
|
||||
$app->page['aside'] .= Widget::follow();
|
||||
} else {
|
||||
unset($_SESSION['theme']);
|
||||
unset($_SESSION['mobile-theme']);
|
||||
}
|
||||
|
||||
$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'],
|
||||
|
|
Loading…
Reference in a new issue