X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=3486a1df52e45aacd26996b96a499022bbd81854;hb=208a149a7b7e25dc84c39e5631cba11d41869bae;hp=a414d8947bf35369a819b9966239585468889b59;hpb=4d30f2b292ec0b77de13cae3c622df84f84aa54f;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index a414d8947b..3486a1df52 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,7 +1,16 @@ 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 ); + notice(L10n::t('Invalid profile identifier.') . EOL ); return; } // 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) - $switchtotext = get_config('system','groupedit_image_limit'); - if($switchtotext === false) - $switchtotext = 400; - + $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 @@ -43,7 +49,7 @@ function profperm_content(App $a) { intval($a->argv[2]), intval(local_user()) ); - if (dbm::is_result($r)) + if (DBM::is_result($r)) $change = intval($a->argv[2]); } @@ -53,8 +59,8 @@ function profperm_content(App $a) { intval($a->argv[1]), intval(local_user()) ); - if (! dbm::is_result($r)) { - notice( t('Invalid profile identifier.') . EOL ); + if (! DBM::is_result($r)) { + notice(L10n::t('Invalid profile identifier.') . EOL ); return; } $profile = $r[0]; @@ -64,8 +70,8 @@ function profperm_content(App $a) { intval($a->argv[1]) ); - $ingroup = array(); - if (dbm::is_result($r)) + $ingroup = []; + if (DBM::is_result($r)) foreach($r as $member) $ingroup[] = $member['id']; @@ -94,17 +100,17 @@ function profperm_content(App $a) { $members = $r; - $ingroup = array(); - if (dbm::is_result($r)) + $ingroup = []; + if (DBM::is_result($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.') . '
'; } @@ -113,7 +119,7 @@ function profperm_content(App $a) { $o = ''; $o .= '
'; - $o .= '

' . t('Visible To') . '

'; + $o .= '

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

'; $o .= '
'; $o .= '
'; @@ -129,7 +135,7 @@ 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 .= '
'; @@ -139,7 +145,7 @@ function profperm_content(App $a) { dbesc(NETWORK_DFRN) ); - if (dbm::is_result($r)) { + if (DBM::is_result($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { if(! in_array($member['id'],$ingroup)) {