aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Notes.php
blob: b2c8eda862e4e8dd753f6aa7f667220622c512c3 (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
24
25
26
27
<?php

namespace Zotlabs\Widget;

use Zotlabs\Lib\Apps;

class Notes {

	function widget($arr) {
		if(! local_channel())
			return EMPTY_STR;

		$text = get_pconfig(local_channel(),'notes','text');

		$tpl = get_markup_template('notes.tpl');

		$o = replace_macros($tpl, array(
			'$banner' => t('Notes'),
			'$text' => $text,
			'$save' => t('Save'),
			'$app' => ((isset($arr['app'])) ? true : false),
			'$hidden' => ((isset($arr['hidden'])) ? true : false)
		));

		return $o;
	}
}