mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
25 lines
381 B
PHP
25 lines
381 B
PHP
<?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 (empty(App::$profile['profile_uid'])) {
|
|
return;
|
|
}
|
|
|
|
$block = observer_prohibited();
|
|
|
|
return profile_sidebar(App::$profile, $block, true, false);
|
|
}
|
|
}
|