aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Wiki_list.php
blob: 64c988ee7e1bea3086f94c2e6e072ac01a2f70c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace Zotlabs\Widget;

class Wiki_list {

	function widget($arr) {

		$channel = channelx_by_n(\App::$profile_uid);

		$wikis = \Zotlabs\Lib\NativeWiki::listwikis($channel,get_observer_hash());

		if($wikis) {
			return replace_macros(get_markup_template('wikilist_widget.tpl'), array(
				'$header' => t('Wikis'),
				'$channel' => $channel['channel_address'],
				'$wikis' => $wikis['wikis']
			));
		}
		return '';
	}

}