X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=5134bfdb6bf1dbbb3ea64f98deb029e5ad1060b4;hb=56c3b3f653bfe2d789470c9bb8434845d3387745;hp=7ced34647fc02bb8fa9579fc26ca21eb74283612;hpb=09851331a9dc8601919cd0c9200686b92843d235;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index 7ced34647f..5134bfdb6b 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -1,5 +1,11 @@ argc > 2) ? intval($a->argv[2]) : 0); } - if (! $item_id) + if(! $item_id) killme(); - if (!in_array($type, array('item','photo','event'))) + if (!in_array($type, ['item','photo','event'])) killme(); $r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1", dbesc($type), intval($item_id) ); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { killme(); } $item = $r[0]; - call_hooks('lockview_content', $item); + Addon::callHooks('lockview_content', $item); - if ($item['uid'] != local_user()) { - echo t('Remote privacy information not available.') . '
'; + if($item['uid'] != local_user()) { + echo L10n::t('Remote privacy information not available.') . '
'; killme(); } - if (($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) + if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) { - echo t('Remote privacy information not available.') . '
'; + echo L10n::t('Remote privacy information not available.') . '
'; killme(); } @@ -46,50 +52,42 @@ function lockview_content(App $a) { $deny_users = expand_acl($item['deny_cid']); $deny_groups = expand_acl($item['deny_gid']); - $o = t('Visible to:') . '
'; - $l = array(); + $o = L10n::t('Visible to:') . '
'; + $l = []; - if (count($allowed_groups)) { + if(count($allowed_groups)) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", dbesc(implode(', ', $allowed_groups)) ); - if (dbm::is_result($r)) { - foreach ($r as $rr) { + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; - } - } } - if (count($allowed_users)) { + if(count($allowed_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", dbesc(implode(', ',$allowed_users)) ); - if (dbm::is_result($r)) { - foreach ($r as $rr) { + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = $rr['name']; - } - } } - if (count($deny_groups)) { + if(count($deny_groups)) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", dbesc(implode(', ', $deny_groups)) ); - if (dbm::is_result($r)) { - foreach ($r as $rr) { + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; - } - } } - if (count($deny_users)) { + if(count($deny_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", dbesc(implode(', ',$deny_users)) ); - if (dbm::is_result($r)) { - foreach ($r as $rr) { + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; - } - } }