X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=e48debfc6b2c8b3b0f61758945fd8ab6c207590d;hb=f58d42e317cbf323fb2c802a0cb71a4799863008;hp=9f9dcfea421beee54a110ccb730cf17eb6ab50ab;hpb=b632114b12ec9a160d5442419c21a068c2eb472b;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index 9f9dcfea42..e48debfc6b 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -1,15 +1,30 @@ . + * */ + use Friendica\App; -use Friendica\BaseObject; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Group; use Friendica\Model\Item; -use Friendica\Util\ACLFormatter; function lockview_content(App $a) { @@ -46,42 +61,41 @@ function lockview_content(App $a) Hook::callAll('lockview_content', $item); if ($item['uid'] != local_user()) { - echo L10n::t('Remote privacy information not available.') . '
'; + echo DI::l10n()->t('Remote privacy information not available.') . '
'; exit(); } if (isset($item['private']) - && $item['private'] == 1 + && $item['private'] == Item::PRIVATE && empty($item['allow_cid']) && empty($item['allow_gid']) && empty($item['deny_cid']) && empty($item['deny_gid'])) { - echo L10n::t('Remote privacy information not available.') . '
'; + echo DI::l10n()->t('Remote privacy information not available.') . '
'; exit(); } - /** @var ACLFormatter $aclFormatter */ - $aclFormatter = BaseObject::getClass(ACLFormatter::class); + $aclFormatter = DI::aclFormatter(); $allowed_users = $aclFormatter->expand($item['allow_cid']); $allowed_groups = $aclFormatter->expand($item['allow_gid']); $deny_users = $aclFormatter->expand($item['deny_cid']); $deny_groups = $aclFormatter->expand($item['deny_gid']); - $o = L10n::t('Visible to:') . '
'; + $o = DI::l10n()->t('Visible to:') . '
'; $l = []; if (count($allowed_groups)) { $key = array_search(Group::FOLLOWERS, $allowed_groups); if ($key !== false) { - $l[] = '' . L10n::t('Followers') . ''; + $l[] = '' . DI::l10n()->t('Followers') . ''; unset($allowed_groups[$key]); } $key = array_search(Group::MUTUALS, $allowed_groups); if ($key !== false) { - $l[] = '' . L10n::t('Mutuals') . ''; + $l[] = '' . DI::l10n()->t('Mutuals') . ''; unset($allowed_groups[$key]); } @@ -110,13 +124,13 @@ function lockview_content(App $a) if (count($deny_groups)) { $key = array_search(Group::FOLLOWERS, $deny_groups); if ($key !== false) { - $l[] = '' . L10n::t('Followers') . ''; + $l[] = '' . DI::l10n()->t('Followers') . ''; unset($deny_groups[$key]); } $key = array_search(Group::MUTUALS, $deny_groups); if ($key !== false) { - $l[] = '' . L10n::t('Mutuals') . ''; + $l[] = '' . DI::l10n()->t('Mutuals') . ''; unset($deny_groups[$key]); }