aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Profile.php
blob: 8bd624c0fd1f60fa6d99f23e381f04dac96d3324 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Zotlabs\Widget;


class Profile {

	function widget($args) {
		$block = observer_prohibited();
		return profile_sidebar(\App::$profile, $block, true, false);
	}

}