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
|
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()
|
public static function content()
|
||||||
{
|
{
|
||||||
$app = self::getApp();
|
$app = self::getApp();
|
||||||
|
@ -43,6 +30,14 @@ class Directory extends BaseModule
|
||||||
throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
|
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 = '';
|
$output = '';
|
||||||
$entries = [];
|
$entries = [];
|
||||||
|
|
||||||
|
@ -157,7 +152,7 @@ class Directory extends BaseModule
|
||||||
|
|
||||||
$entry = [
|
$entry = [
|
||||||
'id' => $contact['id'],
|
'id' => $contact['id'],
|
||||||
'url' => Contact::magicLInk($profile_link),
|
'url' => Contact::magicLink($profile_link),
|
||||||
'itemurl' => $itemurl,
|
'itemurl' => $itemurl,
|
||||||
'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
|
'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
|
||||||
'img_hover' => $contact['name'],
|
'img_hover' => $contact['name'],
|
||||||
|
|
Loading…
Reference in a new issue