X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=4ee933e6cbecea30c696b37722aefdaa42f20aae;hb=3488b937ead0b3988d1f22c632bc2cc81393249b;hp=c67a0202e057921882477fbf9d55fcec0d726c60;hpb=4a473611163a12b48d3bbad71dc54765be8789f9;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index c67a0202e0..4ee933e6cb 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,9 +1,17 @@ user['nickname']; $profile = $a->argv[1]; - profile_load($a,$which,$profile); - + Profile::load($a, $which, $profile); } function profperm_content(App $a) { if (! local_user()) { - notice( t('Permission denied') . EOL); + notice(L10n::t('Permission denied') . EOL); return; } - if($a->argc < 2) { - notice( t('Invalid profile identifier.') . EOL ); + if ($a->argc < 2) { + notice(L10n::t('Invalid profile identifier.') . EOL ); return; } - // Switch to text mod interface if we have more than 'n' contacts or group members + $o = ''; - $switchtotext = get_pconfig(local_user(),'system','groupedit_image_limit'); - if($switchtotext === false) - $switchtotext = get_config('system','groupedit_image_limit'); - if($switchtotext === false) - $switchtotext = 400; + // Switch to text mod interface if we have more than 'n' contacts or group members + $switchtotext = PConfig::get(local_user(),'system','groupedit_image_limit'); + if (is_null($switchtotext)) { + $switchtotext = Config::get('system','groupedit_image_limit', 400); + } 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), + DBA::escape(Protocol::DFRN), intval($a->argv[2]), intval(local_user()) ); - if (dbm::is_result($r)) + + if (DBA::isResult($r)) { $change = intval($a->argv[2]); + } } - 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()) ); - if (! dbm::is_result($r)) { - notice( t('Invalid profile identifier.') . EOL ); + if (! DBA::isResult($r)) { + notice(L10n::t('Invalid profile identifier.') . EOL ); return; } $profile = $r[0]; @@ -66,8 +75,8 @@ function profperm_content(App $a) { intval($a->argv[1]) ); - $ingroup = array(); - if (dbm::is_result($r)) + $ingroup = []; + if (DBA::isResult($r)) foreach($r as $member) $ingroup[] = $member['id']; @@ -96,17 +105,17 @@ function profperm_content(App $a) { $members = $r; - $ingroup = array(); - if (dbm::is_result($r)) + $ingroup = []; + if (DBA::isResult($r)) foreach($r as $member) $ingroup[] = $member['id']; } - $o .= '

' . t('Profile Visibility Editor') . '

'; + $o .= '

' . L10n::t('Profile Visibility Editor') . '

'; - $o .= '

' . t('Profile') . ' \'' . $profile['profile-name'] . '\'

'; + $o .= '

' . L10n::t('Profile') . ' \'' . $profile['profile-name'] . '\'

'; - $o .= '
' . t('Click on a contact to add or remove.') . '
'; + $o .= '
' . L10n::t('Click on a contact to add or remove.') . '
'; } @@ -115,7 +124,7 @@ function profperm_content(App $a) { $o = ''; $o .= '
'; - $o .= '

' . t('Visible To') . '

'; + $o .= '

' . L10n::t('Visible To') . '

'; $o .= '
'; $o .= '
'; @@ -131,17 +140,17 @@ function profperm_content(App $a) { $o .= '
'; $o .= '
'; - $o .= '

' . t("All Contacts \x28with secure profile access\x29") . '

'; + $o .= '

' . L10n::t("All Contacts \x28with secure profile access\x29") . '

'; $o .= '
'; $o .= '
'; $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 AND `network` = '%s' ORDER BY `name` ASC", intval(local_user()), - dbesc(NETWORK_DFRN) + DBA::escape(Protocol::DFRN) ); - if (dbm::is_result($r)) { + if (DBA::isResult($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { if(! in_array($member['id'],$ingroup)) { @@ -161,4 +170,3 @@ function profperm_content(App $a) { return $o; } -