aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/widgets.php b/include/widgets.php
index 2641a718e..acbd9bcd3 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -857,6 +857,33 @@ function widget_chatroom_members() {
return $o;
}
+function widget_wiki_list($arr) {
+
+ require_once("include/wiki.php");
+ $r = wiki_list(App::$profile['channel_hash']);
+
+ if($r) {
+ return replace_macros(get_markup_template('wikilist.tpl'), array(
+ '$header' => t('Wiki List'),
+ '$read' => $r['read'],
+ '$write' => $r['write']
+ ));
+ }
+}
+
+function widget_wiki_pages($arr) {
+
+ require_once("include/wiki.php");
+ $r = wiki_pages(App::$profile['channel_hash']);
+
+ if($r) {
+ return replace_macros(get_markup_template('wiki_page_list.tpl'), array(
+ '$header' => t('Wiki Pages'),
+ '$pages' => $r['pages']
+ ));
+ }
+}
+
function widget_bookmarkedchats($arr) {
if(! feature_enabled(App::$profile['profile_uid'],'ajaxchat'))