]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Move /profile_photo to Module\Settings\Profile\Photo
[friendica.git] / mod / profperm.php
index 4ee933e6cbecea30c696b37722aefdaa42f20aae..f17d1d66b7bcccdf963fc4e0d4a454e5a47f5784 100644 (file)
@@ -3,16 +3,15 @@
  * @file mod/profperm.php
  */
 use Friendica\App;
-use Friendica\Core\Config;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Protocol;
+use Friendica\Content\Text\HTML;
 use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Model\Profile;
 
 function profperm_init(App $a)
 {
-       if (! local_user()) {
+       if (!local_user()) {
                return;
        }
 
@@ -25,14 +24,14 @@ function profperm_init(App $a)
 
 function profperm_content(App $a) {
 
-       if (! local_user()) {
-               notice(L10n::t('Permission denied') . EOL);
+       if (!local_user()) {
+               notice(DI::l10n()->t('Permission denied') . EOL);
                return;
        }
 
 
        if ($a->argc < 2) {
-               notice(L10n::t('Invalid profile identifier.') . EOL );
+               notice(DI::l10n()->t('Invalid profile identifier.') . EOL );
                return;
        }
 
@@ -40,12 +39,12 @@ function profperm_content(App $a) {
 
        // Switch to text mod interface if we have more than 'n' contacts or group members
 
-       $switchtotext = PConfig::get(local_user(),'system','groupedit_image_limit');
+       $switchtotext = DI::pConfig()->get(local_user(),'system','groupedit_image_limit');
        if (is_null($switchtotext)) {
-               $switchtotext = Config::get('system','groupedit_image_limit', 400);
+               $switchtotext = DI::config()->get('system','groupedit_image_limit', 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",
                        DBA::escape(Protocol::DFRN),
@@ -64,8 +63,8 @@ function profperm_content(App $a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if (! DBA::isResult($r)) {
-                       notice(L10n::t('Invalid profile identifier.') . EOL );
+               if (!DBA::isResult($r)) {
+                       notice(DI::l10n()->t('Invalid profile identifier.') . EOL );
                        return;
                }
                $profile = $r[0];
@@ -82,8 +81,8 @@ function profperm_content(App $a) {
 
                $members = $r;
 
-               if($change) {
-                       if(in_array($change,$ingroup)) {
+               if (!empty($change)) {
+                       if (in_array($change,$ingroup)) {
                                q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d",
                                        intval($change),
                                        intval(local_user())
@@ -111,36 +110,36 @@ function profperm_content(App $a) {
                                        $ingroup[] = $member['id'];
                }
 
-               $o .= '<h2>' . L10n::t('Profile Visibility Editor') . '</h2>';
+               $o .= '<h2>' . DI::l10n()->t('Profile Visibility Editor') . '</h2>';
 
-               $o .= '<h3>' . L10n::t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
+               $o .= '<h3>' . DI::l10n()->t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
 
-               $o .= '<div id="prof-edit-desc">' . L10n::t('Click on a contact to add or remove.') . '</div>';
+               $o .= '<div id="prof-edit-desc">' . DI::l10n()->t('Click on a contact to add or remove.') . '</div>';
 
        }
 
        $o .= '<div id="prof-update-wrapper">';
-       if($change)
+       if (!empty($change))
                $o = '';
 
        $o .= '<div id="prof-members-title">';
-       $o .= '<h3>' . L10n::t('Visible To') . '</h3>';
+       $o .= '<h3>' . DI::l10n()->t('Visible To') . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-members">';
 
        $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
 
        foreach($members as $member) {
-               if($member['url']) {
+               if ($member['url']) {
                        $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
-                       $o .= micropro($member,true,'mpprof', $textmode);
+                       $o .= HTML::micropro($member,true,'mpprof', $textmode);
                }
        }
        $o .= '</div><div id="prof-members-end"></div>';
        $o .= '<hr id="prof-separator" />';
 
        $o .= '<div id="prof-all-contcts-title">';
-       $o .= '<h3>' . L10n::t("All Contacts \x28with secure profile access\x29") . '</h3>';
+       $o .= '<h3>' . DI::l10n()->t("All Contacts \x28with secure profile access\x29") . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-all-contacts">';
 
@@ -153,18 +152,18 @@ function profperm_content(App $a) {
                if (DBA::isResult($r)) {
                        $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
                        foreach($r as $member) {
-                               if(! in_array($member['id'],$ingroup)) {
+                               if (!in_array($member['id'],$ingroup)) {
                                        $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
-                                       $o .= micropro($member,true,'mpprof',$textmode);
+                                       $o .= HTML::micropro($member,true,'mpprof',$textmode);
                                }
                        }
                }
 
                $o .= '</div><div id="prof-all-contacts-end"></div>';
 
-       if($change) {
+       if (!empty($change)) {
                echo $o;
-               killme();
+               exit();
        }
        $o .= '</div>';
        return $o;