aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Permcat.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-02-07 17:51:56 -0800
committerzotlabs <mike@macgirvin.com>2017-02-07 17:51:56 -0800
commit2d3e20d96ea4dd08b982f9ff0fcfa94949fb853b (patch)
tree5c5b10e91633d9efda42c5a59a9fc652367567ae /Zotlabs/Lib/Permcat.php
parent723b51c931e7365b3c8d531bf25c6c02308cba9f (diff)
downloadvolse-hubzilla-2d3e20d96ea4dd08b982f9ff0fcfa94949fb853b.tar.gz
volse-hubzilla-2d3e20d96ea4dd08b982f9ff0fcfa94949fb853b.tar.bz2
volse-hubzilla-2d3e20d96ea4dd08b982f9ff0fcfa94949fb853b.zip
move permcat initialisation to zlib
Diffstat (limited to 'Zotlabs/Lib/Permcat.php')
-rw-r--r--Zotlabs/Lib/Permcat.php49
1 files changed, 48 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Permcat.php b/Zotlabs/Lib/Permcat.php
index d677cd704..a38645f73 100644
--- a/Zotlabs/Lib/Permcat.php
+++ b/Zotlabs/Lib/Permcat.php
@@ -32,7 +32,7 @@ class Permcat {
];
- $p = Zaccess\PermissionRoles::permcats($channel_id);
+ $p = $this->load_permcats($channel_id);
if($p) {
for($x = 0; $x < count($p); $x++) {
$this->permcats[] = [
@@ -60,4 +60,51 @@ class Permcat {
return ['error' => true];
}
+ public function load_permcats($uid) {
+
+ $permcats = [
+ [ 'follower', t('follower','permcat'),
+ [ 'view_stream','view_profile','view_contacts','view_storage','view_pages','view_wiki',
+ 'post_like' ]
+ ],
+
+ [ 'contributor', t('contributor','permcat'),
+ [ 'view_stream','view_profile','view_contacts','view_storage','view_pages','view_wiki',
+ 'post_wall','post_comments','write_wiki','post_like','tag_deliver','chat' ]
+ ],
+ [ 'trusted', t('trusted','permcat'),
+ [ 'view_stream','view_profile','view_contacts','view_storage','view_pages',
+ 'write_storage','post_wall','write_pages','write_wiki','post_comments','post_like','tag_deliver',
+ 'chat', 'republish' ]
+ ],
+ [ 'moderator', t('moderator','permcat'),
+ [ 'view_stream','view_profile','view_contacts','view_storage','view_pages',
+ 'write_storage','post_wall','wite_pages','write_wiki','post_comments','post_like','tag_deliver',
+ 'chat', 'republish' ]
+ ]
+ ];
+
+ if($uid) {
+ $x = q("select * from pconfig where uid = %d and cat = 'permcat'",
+ intval($uid)
+ );
+ if($x) {
+ foreach($x as $xv) {
+ $permcats[] = [ $xv['k'], $xv['k'], $xv['v'] ];
+ }
+ }
+ }
+
+ call_hooks('permcats',$permcats);
+
+ return $permcats;
+
+ }
+
+
+
+
+
+
+
} \ No newline at end of file