aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Privacygroups.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-01-07 20:07:09 +0000
committerMario <mario@mariovavti.com>2022-01-07 20:07:09 +0000
commit7450ac1a31596ba7dade032d6a38008eb339eba2 (patch)
tree334794fbee823c68bbd63031a2389279b9ec1c29 /Zotlabs/Widget/Privacygroups.php
parentc72e5e3b66db227e27a400044dcc0a6748d49cb5 (diff)
downloadvolse-hubzilla-7450ac1a31596ba7dade032d6a38008eb339eba2.tar.gz
volse-hubzilla-7450ac1a31596ba7dade032d6a38008eb339eba2.tar.bz2
volse-hubzilla-7450ac1a31596ba7dade032d6a38008eb339eba2.zip
missing files
Diffstat (limited to 'Zotlabs/Widget/Privacygroups.php')
-rw-r--r--Zotlabs/Widget/Privacygroups.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Privacygroups.php b/Zotlabs/Widget/Privacygroups.php
new file mode 100644
index 000000000..74ce02ccd
--- /dev/null
+++ b/Zotlabs/Widget/Privacygroups.php
@@ -0,0 +1,55 @@
+<?php
+
+namespace Zotlabs\Widget;
+
+use Zotlabs\Lib\AccessList;
+
+class Privacygroups {
+
+ function widget($arr) {
+
+ $o = '';
+
+ $groups = q("SELECT id, gname FROM pgrp WHERE deleted = 0 AND uid = %d ORDER BY gname ASC",
+ intval(local_channel())
+ );
+
+ if (!$groups) {
+ return $o;
+ }
+
+ $menu_items = [];
+ $z_root = z_root();
+ $active = argv(1) ?? '';
+
+ foreach($groups as $group) {
+ $menu_items[] = [
+ 'href' => $z_root . '/group/' . $group['id'],
+ 'label' => $group['gname'],
+ 'title' => '',
+ 'active' => ($active === $group['id']),
+ 'count' => count(AccessList::members(local_channel(), $group['id']))
+ ];
+ }
+
+ if ($active) {
+ $menu_items[] = [
+ 'href' => $z_root . '/group',
+ 'label' => '<i class="fa fa-plus"></i> &nbsp;' . t('Add new privacy group'),
+ 'title' => '',
+ 'active' => '',
+ 'count' => ''
+ ];
+ }
+
+ $tpl = get_markup_template("widget_menu_count.tpl");
+ $o .= replace_macros($tpl, [
+ '$title' => t('Privacy groups'),
+ '$menu_items' => $menu_items,
+
+ ]);
+
+ return $o;
+
+ }
+}