]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Add new INI config files
[friendica.git] / mod / profperm.php
index 2b3c07526be8dfeb78ac2684e2b5dc4c37a63999..0f864d42f3e2b8ca66ce83c31bf55787519e2c46 100644 (file)
@@ -1,11 +1,16 @@
 <?php
-
+/**
+ * @file mod/profperm.php
+ */
 use Friendica\App;
 use Friendica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
+use Friendica\Database\DBM;
+use Friendica\Model\Profile;
 
-function profperm_init(App $a) {
-
+function profperm_init(App $a)
+{
        if (! local_user()) {
                return;
        }
@@ -13,32 +18,31 @@ function profperm_init(App $a) {
        $which = $a->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;
        }
 
+       $o = '';
+
        // 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($switchtotext === false)
-               $switchtotext = Config::get('system','groupedit_image_limit');
-       if($switchtotext === false)
-               $switchtotext = 400;
-
+       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
@@ -47,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]);
        }
 
@@ -57,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];
@@ -68,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'];
 
@@ -98,17 +102,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 .= '<h2>' . t('Profile Visibility Editor') . '</h2>';
+               $o .= '<h2>' . L10n::t('Profile Visibility Editor') . '</h2>';
 
-               $o .= '<h3>' . t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
+               $o .= '<h3>' . L10n::t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
 
-               $o .= '<div id="prof-edit-desc">' . t('Click on a contact to add or remove.') . '</div>';
+               $o .= '<div id="prof-edit-desc">' . L10n::t('Click on a contact to add or remove.') . '</div>';
 
        }
 
@@ -117,7 +121,7 @@ function profperm_content(App $a) {
                $o = '';
 
        $o .= '<div id="prof-members-title">';
-       $o .= '<h3>' . t('Visible To') . '</h3>';
+       $o .= '<h3>' . L10n::t('Visible To') . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-members">';
 
@@ -133,7 +137,7 @@ function profperm_content(App $a) {
        $o .= '<hr id="prof-separator" />';
 
        $o .= '<div id="prof-all-contcts-title">';
-       $o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
+       $o .= '<h3>' . L10n::t("All Contacts \x28with secure profile access\x29") . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-all-contacts">';
 
@@ -143,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)) {
@@ -163,4 +167,3 @@ function profperm_content(App $a) {
        return $o;
 
 }
-