]> git.mxchange.org Git - friendica-addons.git/blobdiff - remote_permissions/remote_permissions.php
EN-US translation added for nsfw
[friendica-addons.git] / remote_permissions / remote_permissions.php
index a1d1a8ecf2e1c1be9a62f30513de8bf90aa23c55..94bdf5c11ea0d89a8a7320cf9882287e015759c9 100644 (file)
@@ -4,22 +4,23 @@
  * Description: Allow the recipients of private posts to see who else can see the post by clicking the lock icon
  * Version: 1.0
  * Author: Zach <https://f.shmuz.in/profile/techcity>
- * 
+ *
  */
-
+use Friendica\Core\Addon;
 use Friendica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 
 function remote_permissions_install() {
-       register_hook('lockview_content', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_content');
-       register_hook('plugin_settings', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings');
-       register_hook('plugin_settings_post', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings_post');
+       Addon::registerHook('lockview_content', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_content');
+       Addon::registerHook('addon_settings', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings');
+       Addon::registerHook('addon_settings_post', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings_post');
 }
 
 function remote_permissions_uninstall() {
-       unregister_hook('lockview_content', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_content');
-       unregister_hook('plugin_settings', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings');
-       unregister_hook('plugin_settings_post', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings_post');
+       Addon::unregisterHook('lockview_content', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_content');
+       Addon::unregisterHook('addon_settings', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings');
+       Addon::unregisterHook('addon_settings_post', 'addon/remote_permissions/remote_permissions.php', 'remote_permissions_settings_post');
 }
 
 function remote_permissions_settings(&$a,&$o) {
@@ -38,17 +39,17 @@ function remote_permissions_settings(&$a,&$o) {
        /* Get the current state of our config variable */
 
        $remote_perms = PConfig::get(local_user(),'remote_perms','show');
-       
+
        /* Add some HTML to the existing form */
 
 //     $t = file_get_contents("addon/remote_permissions/settings.tpl" );
        $t = get_markup_template("settings.tpl", "addon/remote_permissions/" );
-       $o .= replace_macros($t, array(
-               '$remote_perms_title' => t('Remote Permissions Settings'),
-               '$remote_perms_label' => t('Allow recipients of your private posts to see the other recipients of the posts'),
+       $o .= replace_macros($t, [
+               '$remote_perms_title' => L10n::t('Remote Permissions Settings'),
+               '$remote_perms_label' => L10n::t('Allow recipients of your private posts to see the other recipients of the posts'),
                '$checked' => (($remote_perms == 1) ? 'checked="checked"' : ''),
-               '$submit' => t('Save Settings')
-       ));
+               '$submit' => L10n::t('Save Settings')
+       ]);
 
 }
 
@@ -57,7 +58,7 @@ function remote_permissions_settings_post($a,$post) {
                return;
 
        PConfig::set(local_user(),'remote_perms','show',intval($_POST['remote-perms']));
-       info( t('Remote Permissions settings updated.') . EOL);
+       info(L10n::t('Remote Permissions settings updated.') . EOL);
 }
 
 function remote_permissions_content($a, $item_copy) {
@@ -71,7 +72,7 @@ function remote_permissions_content($a, $item_copy) {
                $r = q("SELECT nick, url FROM contact WHERE id = %d LIMIT 1",
                       intval($item_copy['contact-id'])
                );
-               if(! $r) 
+               if(! $r)
                        return;
 
                // Find out if the contact lives here
@@ -95,7 +96,7 @@ function remote_permissions_content($a, $item_copy) {
        if(($item_copy['private'] == 1) && (! strlen($item_copy['allow_cid'])) && (! strlen($item_copy['allow_gid']))
                && (! strlen($item_copy['deny_cid'])) && (! strlen($item_copy['deny_gid']))) {
 
-               $allow_names = array();
+               $allow_names = [];
 
                // Check for the original post here -- that's the only way
                // to definitely get all of the recipients
@@ -123,15 +124,15 @@ function remote_permissions_content($a, $item_copy) {
                        $deny_users = expand_acl($item['deny_cid']);
                        $deny_groups = expand_acl($item['deny_gid']);
 
-                       $o = t('Visible to:') . '<br />';
-                       $allow = array();
-                       $deny = array();
+                       $o = L10n::t('Visible to:') . '<br />';
+                       $allow = [];
+                       $deny = [];
 
                        if(count($allowed_groups)) {
                                $r = q("SELECT DISTINCT `contact-id` FROM group_member WHERE gid IN ( %s )",
                                        dbesc(implode(', ', $allowed_groups))
                                );
-                               foreach($r as $rr) 
+                               foreach($r as $rr)
                                        $allow[] = $rr['contact-id'];
                        }
                        $allow = array_unique($allow + $allowed_users);
@@ -140,7 +141,7 @@ function remote_permissions_content($a, $item_copy) {
                                $r = q("SELECT DISTINCT `contact-id` FROM group_member WHERE gid IN ( %s )",
                                        dbesc(implode(', ', $deny_groups))
                                );
-                               foreach($r as $rr) 
+                               foreach($r as $rr)
                                        $deny[] = $rr['contact-id'];
                        }
                        $deny = $deny + $deny_users;
@@ -167,7 +168,7 @@ function remote_permissions_content($a, $item_copy) {
                        if(! $r)
                                return;
 
-                       $allow = array();
+                       $allow = [];
                        foreach($r as $rr)
                                $allow[] = $rr['uid'];
 
@@ -177,7 +178,7 @@ function remote_permissions_content($a, $item_copy) {
                        if(! $r)
                                return;
 
-                       $o = t('Visible to') . ' (' . t('may only be a partial list') . '):<br />';
+                       $o = L10n::t('Visible to') . ' (' . L10n::t('may only be a partial list') . '):<br />';
 
                        foreach($r as $rr)
                                $allow_names[] = $rr['username'];
@@ -192,18 +193,17 @@ function remote_permissions_content($a, $item_copy) {
        return;
 }
 
-function remote_permissions_plugin_admin(&$a, &$o){
+function remote_permissions_addon_admin(&$a, &$o){
        $t = get_markup_template( "admin.tpl", "addon/remote_permissions/" );
-       $o = replace_macros($t, array(
-               '$submit' => t('Save Settings'),
-               '$global' => array('remotepermschoice', t('Global'), 1, t('The posts of every user on this server show the post recipients'),  Config::get('remote_perms', 'global') == 1),
-               '$individual' => array('remotepermschoice', t('Individual'), 2, t('Each user chooses whether his/her posts show the post recipients'),  Config::get('remote_perms', 'global') == 0)
-       ));
+       $o = replace_macros($t, [
+               '$submit' => L10n::t('Save Settings'),
+               '$global' => ['remotepermschoice', L10n::t('Global'), 1, L10n::t('The posts of every user on this server show the post recipients'),  Config::get('remote_perms', 'global') == 1],
+               '$individual' => ['remotepermschoice', L10n::t('Individual'), 2, L10n::t('Each user chooses whether his/her posts show the post recipients'),  Config::get('remote_perms', 'global') == 0]
+       ]);
 }
 
-function remote_permissions_plugin_admin_post(&$a){
+function remote_permissions_addon_admin_post(&$a){
        $choice =       ((x($_POST,'remotepermschoice'))                ? notags(trim($_POST['remotepermschoice']))     : '');
        Config::set('remote_perms','global',($choice == 1 ? 1 : 0));
-       info( t('Settings updated.'). EOL );
+       info(L10n::t('Settings updated.'). EOL);
 }
-