X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=e3382bddb8bdbbe03f6d9a46ea2001bf9419d7bb;hb=9435cc4b88de611407bf992f571e12e8f54b3c51;hp=eede1b6a0dac4eca34d039a470b3d22f7e5dcdfa;hpb=e5321ecc7f6e8af9e9851214379077459960ab5b;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index eede1b6a0d..e3382bddb8 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -4,8 +4,8 @@ */ use Friendica\App; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Group; use Friendica\Model\Item; @@ -44,7 +44,7 @@ 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(); } @@ -55,28 +55,30 @@ function lockview_content(App $a) && 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(); } - $allowed_users = expand_acl($item['allow_cid']); - $allowed_groups = expand_acl($item['allow_gid']); - $deny_users = expand_acl($item['deny_cid']); - $deny_groups = expand_acl($item['deny_gid']); + $aclFormatter = DI::aclFormatter(); - $o = L10n::t('Visible to:') . '
'; + $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 = 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]); } @@ -105,13 +107,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]); }