Revert "Coding convention applied - part 1"

This commit is contained in:
Hypolite Petovan 2017-03-21 12:02:59 -04:00 committed by GitHub
parent 9c2c483996
commit 7b352f3f74
181 changed files with 3507 additions and 4338 deletions

View file

@ -22,7 +22,7 @@ function profperm_content(App $a) {
}
if ($a->argc < 2) {
if($a->argc < 2) {
notice( t('Invalid profile identifier.') . EOL );
return;
}
@ -30,13 +30,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 +48,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 +66,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 +96,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 +109,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 +119,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 +141,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 +151,7 @@ function profperm_content(App $a) {
$o .= '</div><div id="prof-all-contacts-end"></div>';
if ($change) {
if($change) {
echo $o;
killme();
}