diff options
author | Mario <mario@mariovavti.com> | 2021-01-18 13:00:39 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-18 13:00:39 +0000 |
commit | 4f74d1d877f2ece3829978ddc78c81c83868504b (patch) | |
tree | 7228775f8d6247aebed29b7624952452c249a676 | |
parent | bee84e9b008bdbc9613912eec9258b962811dab9 (diff) | |
download | volse-hubzilla-4f74d1d877f2ece3829978ddc78c81c83868504b.tar.gz volse-hubzilla-4f74d1d877f2ece3829978ddc78c81c83868504b.tar.bz2 volse-hubzilla-4f74d1d877f2ece3829978ddc78c81c83868504b.zip |
cleanup
-rw-r--r-- | Zotlabs/Access/PermissionLimits.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Zotlabs/Access/PermissionLimits.php b/Zotlabs/Access/PermissionLimits.php index c11dc95e6..fb5fe6133 100644 --- a/Zotlabs/Access/PermissionLimits.php +++ b/Zotlabs/Access/PermissionLimits.php @@ -2,6 +2,7 @@ namespace Zotlabs\Access; +use App; use Zotlabs\Lib\PConfig; /** @@ -39,10 +40,10 @@ class PermissionLimits { */ static public function Std_Limits() { $limits = []; - $perms = Permissions::Perms(); + $perms = Permissions::Perms(); - foreach($perms as $k => $v) { - if(strstr($k, 'view')) + foreach ($perms as $k => $v) { + if (strstr($k, 'view')) $limits[$k] = PERMS_PUBLIC; else $limits[$k] = PERMS_SPECIFIC; @@ -77,14 +78,14 @@ class PermissionLimits { * * \b array with all permission limits, if $perm is not set */ static public function Get($channel_id, $perm = '') { - if($perm) { + if ($perm) { return intval(PConfig::Get($channel_id, 'perm_limits', $perm)); } PConfig::Load($channel_id); - if(array_key_exists($channel_id, \App::$config) - && array_key_exists('perm_limits', \App::$config[$channel_id])) - return \App::$config[$channel_id]['perm_limits']; + if (array_key_exists($channel_id, App::$config) + && array_key_exists('perm_limits', App::$config[$channel_id])) + return App::$config[$channel_id]['perm_limits']; return false; } |