aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Bookmarkedchats.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-16 17:11:48 -0700
committerzotlabs <mike@macgirvin.com>2017-03-16 17:11:48 -0700
commit446b5550a2c2b52bb31db5b99602c42b9dfdade6 (patch)
treebc7cf06be9fe2561bddf29ee3d4a082241b75248 /Zotlabs/Widget/Bookmarkedchats.php
parent051759580dc7aff7d5b349b3b5271f054c7d3423 (diff)
downloadvolse-hubzilla-446b5550a2c2b52bb31db5b99602c42b9dfdade6.tar.gz
volse-hubzilla-446b5550a2c2b52bb31db5b99602c42b9dfdade6.tar.bz2
volse-hubzilla-446b5550a2c2b52bb31db5b99602c42b9dfdade6.zip
the rest of the standard widgets converted
Diffstat (limited to 'Zotlabs/Widget/Bookmarkedchats.php')
-rw-r--r--Zotlabs/Widget/Bookmarkedchats.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Bookmarkedchats.php b/Zotlabs/Widget/Bookmarkedchats.php
new file mode 100644
index 000000000..d64bbdb4b
--- /dev/null
+++ b/Zotlabs/Widget/Bookmarkedchats.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace Zotlabs\Widget;
+
+class Bookmarkedchats {
+
+ function widget($arr) {
+
+ if(! feature_enabled(\App::$profile['profile_uid'],'ajaxchat'))
+ return '';
+
+ $h = get_observer_hash();
+ if(! $h)
+ return;
+ $r = q("select xchat_url, xchat_desc from xchat where xchat_xchan = '%s' order by xchat_desc",
+ dbesc($h)
+ );
+ if($r) {
+ for($x = 0; $x < count($r); $x ++) {
+ $r[$x]['xchat_url'] = zid($r[$x]['xchat_url']);
+ }
+ }
+ return replace_macros(get_markup_template('bookmarkedchats.tpl'),array(
+ '$header' => t('Bookmarked Chatrooms'),
+ '$rooms' => $r
+ ));
+ }
+}