X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=0f864d42f3e2b8ca66ce83c31bf55787519e2c46;hb=54707dd4c815b6bf9aec5d8cb9231a1646aaa65a;hp=1c37f84ab2fca78f9703d2c74ac9075d7eeee380;hpb=c1193c9c134fb91e2ddbc2bf7b79f6ec1abb2e94;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index 1c37f84ab2..0f864d42f3 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,39 +1,48 @@ user['nickname']; $profile = $a->argv[1]; - profile_load($a,$which,$profile); - + Profile::load($a, $which, $profile); } -function profperm_content(&$a) { +function profperm_content(App $a) { - if(! local_user()) { - notice( t('Permission denied') . EOL); + if (! local_user()) { + 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 + $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 @@ -42,7 +51,7 @@ function profperm_content(&$a) { intval($a->argv[2]), intval(local_user()) ); - if (dbm::is_result($r)) + if (DBM::is_result($r)) $change = intval($a->argv[2]); } @@ -52,8 +61,8 @@ function profperm_content(&$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]; @@ -63,8 +72,8 @@ function profperm_content(&$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']; @@ -93,26 +102,26 @@ function profperm_content(&$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.') . '
'; } $o .= '
'; - if($change) + if($change) $o = ''; - + $o .= '
'; - $o .= '

' . t('Visible To') . '

'; + $o .= '

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

'; $o .= '
'; $o .= '
'; @@ -128,7 +137,7 @@ function profperm_content(&$a) { $o .= '
'; $o .= '
'; - $o .= '

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

'; + $o .= '

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

'; $o .= '
'; $o .= '
'; @@ -138,7 +147,7 @@ function profperm_content(&$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)) { @@ -158,4 +167,3 @@ function profperm_content(&$a) { return $o; } -