]> git.mxchange.org Git - friendica.git/blobdiff - mod/lockview.php
Use short form array syntax everywhere
[friendica.git] / mod / lockview.php
index 746df28cd9478bbbef134dbbe8a797c3c8a0750c..ced03d1b569edb707141b176bbb1ea5004cebbe0 100644 (file)
@@ -1,8 +1,10 @@
 <?php
 
+use Friendica\App;
+use Friendica\Database\DBM;
+
+function lockview_content(App $a) {
 
-function lockview_content(App &$a) {
-  
        $type = (($a->argc > 1) ? $a->argv[1] : 0);
        if (is_numeric($type)) {
                $item_id = intval($type);
@@ -10,18 +12,18 @@ function lockview_content(App &$a) {
        } else {
                $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
        }
-  
+
        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];
@@ -34,7 +36,7 @@ function lockview_content(App &$a) {
        }
 
 
-       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.') . '<br />';
@@ -47,22 +49,22 @@ function lockview_content(App &$a) {
        $deny_groups = expand_acl($item['deny_gid']);
 
        $o = t('Visible to:') . '<br />';
-       $l = array();
+       $l = [];
 
        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[] = '<b>' . $rr['name'] . '</b>';
        }
        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'];
 
        }
@@ -71,16 +73,16 @@ function lockview_content(App &$a) {
                $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[] = '<b><strike>' . $rr['name'] . '</strike></b>';
        }
        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[] = '<strike>' . $rr['name'] . '</strike>';
 
        }