mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
23 lines
432 B
PHP
23 lines
432 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Full profile
|
|
* * Description: Profile card with extended profile info
|
|
* * Requires: channel, articles, cards, wiki, cloud, photos
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
class Fullprofile {
|
|
|
|
function widget($arr) {
|
|
|
|
if(!(isset(\App::$profile['profile_uid']) && \App::$profile['profile_uid']))
|
|
return;
|
|
|
|
$block = observer_prohibited();
|
|
|
|
return profile_sidebar(\App::$profile, $block, true, true);
|
|
}
|
|
}
|