X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=e48debfc6b2c8b3b0f61758945fd8ab6c207590d;hb=8eeb7807d3cf7c0490299b7540ca06f4d091217c;hp=35c4b043329ae4284250d95a398636407a3d5d8e;hpb=854cc3e47296d4a1b01b893376064cf254d84f79;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index 35c4b04332..e48debfc6b 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -1,11 +1,29 @@ . + * */ + 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; function lockview_content(App $a) @@ -43,30 +61,45 @@ 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(); } - $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(); + + $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[] = '' . DI::l10n()->t('Followers') . ''; + unset($allowed_groups[$key]); + } + + $key = array_search(Group::MUTUALS, $allowed_groups); + if ($key !== false) { + $l[] = '' . DI::l10n()->t('Mutuals') . ''; + unset($allowed_groups[$key]); + } + + $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", DBA::escape(implode(', ', $allowed_groups)) ); @@ -89,6 +122,18 @@ function lockview_content(App $a) } if (count($deny_groups)) { + $key = array_search(Group::FOLLOWERS, $deny_groups); + if ($key !== false) { + $l[] = '' . DI::l10n()->t('Followers') . ''; + unset($deny_groups[$key]); + } + + $key = array_search(Group::MUTUALS, $deny_groups); + if ($key !== false) { + $l[] = '' . DI::l10n()->t('Mutuals') . ''; + unset($deny_groups[$key]); + } + $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", DBA::escape(implode(', ', $deny_groups)) );