]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Add new INI config files
[friendica.git] / mod / profperm.php
index 99b58516d3e420b4e1dda7402d8f179d8a979948..0f864d42f3e2b8ca66ce83c31bf55787519e2c46 100644 (file)
@@ -1,12 +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;
        }
@@ -14,24 +18,25 @@ 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');
@@ -57,7 +62,7 @@ function profperm_content(App $a) {
                        intval(local_user())
                );
                if (! DBM::is_result($r)) {
-                       notice( t('Invalid profile identifier.') . EOL );
+                       notice(L10n::t('Invalid profile identifier.') . EOL );
                        return;
                }
                $profile = $r[0];
@@ -67,7 +72,7 @@ function profperm_content(App $a) {
                        intval($a->argv[1])
                );
 
-               $ingroup = array();
+               $ingroup = [];
                if (DBM::is_result($r))
                        foreach($r as $member)
                                $ingroup[] = $member['id'];
@@ -97,17 +102,17 @@ function profperm_content(App $a) {
 
                        $members = $r;
 
-                       $ingroup = array();
+                       $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>';
 
        }
 
@@ -116,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">';
 
@@ -132,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">';
 
@@ -162,4 +167,3 @@ function profperm_content(App $a) {
        return $o;
 
 }
-