X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=0f864d42f3e2b8ca66ce83c31bf55787519e2c46;hb=2503660f97c3f9588f1965c23b98d0c78109ee0b;hp=bbb055b021c382e639dd5e50d20cb5b29419bd70;hpb=cbc32143d7c9a70fa89238e5a75a22c4b8eacc41;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index bbb055b021..0f864d42f3 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) { +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 + $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 @@ -43,7 +51,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 +61,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 +72,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,26 +102,26 @@ 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.') . '
'; } $o .= '
'; - if($change) + if($change) $o = ''; - + $o .= '
'; - $o .= '

' . t('Visible To') . '

'; + $o .= '

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

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