aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Widget/Profile.php
blob: 9e04524c1b2893d2b759b907e2dd90dc5b5c9f49 (plain) (tree)
1
2
3
4
5
6
7
8
9

     






                                                              

                         
        

               
                                
                                                          


                               
                                               
 

                                                                           
 
<?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);
	}
}