]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Removed unused template variable
[friendica.git] / mod / profperm.php
index 37054fb7c2583f1304b06b3a378fade8ac1da983..c67a0202e057921882477fbf9d55fcec0d726c60 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+use Friendica\App;
+
 function profperm_init(App $a) {
 
        if (! local_user()) {
@@ -22,7 +24,7 @@ function profperm_content(App $a) {
        }
 
 
-       if ($a->argc < 2) {
+       if($a->argc < 2) {
                notice( t('Invalid profile identifier.') . EOL );
                return;
        }
@@ -30,13 +32,13 @@ function profperm_content(App $a) {
        // Switch to text mod interface if we have more than 'n' contacts or group members
 
        $switchtotext = get_pconfig(local_user(),'system','groupedit_image_limit');
-       if ($switchtotext === false)
+       if($switchtotext === false)
                $switchtotext = get_config('system','groupedit_image_limit');
-       if ($switchtotext === false)
+       if($switchtotext === false)
                $switchtotext = 400;
 
 
-       if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
+       if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
                $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0
                        AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1",
                        dbesc(NETWORK_DFRN),
@@ -48,7 +50,7 @@ function profperm_content(App $a) {
        }
 
 
-       if (($a->argc > 1) && (intval($a->argv[1]))) {
+       if(($a->argc > 1) && (intval($a->argv[1]))) {
                $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
                        intval($a->argv[1]),
                        intval(local_user())
@@ -66,13 +68,13 @@ function profperm_content(App $a) {
 
                $ingroup = array();
                if (dbm::is_result($r))
-                       foreach ($r as $member)
+                       foreach($r as $member)
                                $ingroup[] = $member['id'];
 
                $members = $r;
 
-               if ($change) {
-                       if (in_array($change,$ingroup)) {
+               if($change) {
+                       if(in_array($change,$ingroup)) {
                                q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d",
                                        intval($change),
                                        intval(local_user())
@@ -96,7 +98,7 @@ function profperm_content(App $a) {
 
                        $ingroup = array();
                        if (dbm::is_result($r))
-                               foreach ($r as $member)
+                               foreach($r as $member)
                                        $ingroup[] = $member['id'];
                }
 
@@ -109,7 +111,7 @@ function profperm_content(App $a) {
        }
 
        $o .= '<div id="prof-update-wrapper">';
-       if ($change)
+       if($change)
                $o = '';
 
        $o .= '<div id="prof-members-title">';
@@ -119,8 +121,8 @@ function profperm_content(App $a) {
 
        $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
 
-       foreach ($members as $member) {
-               if ($member['url']) {
+       foreach($members as $member) {
+               if($member['url']) {
                        $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
                        $o .= micropro($member,true,'mpprof', $textmode);
                }
@@ -141,8 +143,8 @@ function profperm_content(App $a) {
 
                if (dbm::is_result($r)) {
                        $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
-                       foreach ($r as $member) {
-                               if (! in_array($member['id'],$ingroup)) {
+                       foreach($r as $member) {
+                               if(! in_array($member['id'],$ingroup)) {
                                        $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
                                        $o .= micropro($member,true,'mpprof',$textmode);
                                }
@@ -151,7 +153,7 @@ function profperm_content(App $a) {
 
                $o .= '</div><div id="prof-all-contacts-end"></div>';
 
-       if ($change) {
+       if($change) {
                echo $o;
                killme();
        }