streams/Zotlabs/Widget/Fullprofile.php
2017-03-29 11:49:32 +02:00

16 lines
221 B
PHP

<?php
namespace Zotlabs\Widget;
class Fullprofile {
function widget($arr) {
if(! \App::$profile['profile_uid'])
return;
$block = observer_prohibited();
return profile_sidebar(\App::$profile, $block);
}
}