aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Profile.php
blob: 9e04524c1b2893d2b759b907e2dd90dc5b5c9f49 (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
<?php

/**
 *   * Name: Profile
 *   * Description: Your profile card
 *   * Requires: channel, articles, cards, wiki, cloud, photos
 */


namespace Zotlabs\Widget;

use App;

class Profile {
	function widget($args) {
		if(!isset(App::$profile['profile_uid'])) {
			return;
		}

		$block = observer_prohibited();

		return profile_sidebar(App::$profile, $block, true, false);
	}
}