]> git.mxchange.org Git - friendica.git/blobdiff - mod/lockview.php
Improve Console/Config display for array values
[friendica.git] / mod / lockview.php
index 48227cc1eaf47aa0d973e71a621f34e134f71ebf..5134bfdb6bf1dbbb3ea64f98deb029e5ad1060b4 100644 (file)
@@ -1,6 +1,11 @@
 <?php
-
+/**
+ * @file mod/lockview.php
+ */
 use Friendica\App;
+use Friendica\Core\Addon;
+use Friendica\Core\L10n;
+use Friendica\Database\DBM;
 
 function lockview_content(App $a) {
 
@@ -15,22 +20,22 @@ function lockview_content(App $a) {
        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.') . '<br />';
+               echo L10n::t('Remote privacy information not available.') . '<br />';
                killme();
        }
 
@@ -38,7 +43,7 @@ function lockview_content(App $a) {
        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.') . '<br />';
+               echo L10n::t('Remote privacy information not available.') . '<br />';
                killme();
        }
 
@@ -47,14 +52,14 @@ function lockview_content(App $a) {
        $deny_users = expand_acl($item['deny_cid']);
        $deny_groups = expand_acl($item['deny_gid']);
 
-       $o = t('Visible to:') . '<br />';
-       $l = array();
+       $o = L10n::t('Visible to:') . '<br />';
+       $l = [];
 
        if(count($allowed_groups)) {
                $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
                        dbesc(implode(', ', $allowed_groups))
                );
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        foreach($r as $rr)
                                $l[] = '<b>' . $rr['name'] . '</b>';
        }
@@ -62,7 +67,7 @@ function lockview_content(App $a) {
                $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
                        dbesc(implode(', ',$allowed_users))
                );
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        foreach($r as $rr)
                                $l[] = $rr['name'];
 
@@ -72,7 +77,7 @@ function lockview_content(App $a) {
                $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
                        dbesc(implode(', ', $deny_groups))
                );
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        foreach($r as $rr)
                                $l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
        }
@@ -80,7 +85,7 @@ function lockview_content(App $a) {
                $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
                        dbesc(implode(', ',$deny_users))
                );
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        foreach($r as $rr)
                                $l[] = '<strike>' . $rr['name'] . '</strike>';