streams/Zotlabs/Widget/Fullprofile.php
2017-03-15 19:30:57 -07: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);
}
}